123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "StaffList";
- Guid? collegeID = new Guid(Request["collegeID"]);
- //教研室
- ComboGridOptions cgopDepartment = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "DepartmentID",
- ID = "DepartmentDropdown",
- Name = "DepartmentDropdown",
- OnSelect = "reload",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- //new LinkButtonColumn { FieldName="No", HeaderText="所属教研室代码", Align=AlignStyle.Center, Width=0.1 },
- new BoundFieldColumn { FieldName="Name", HeaderText="所属教研室", Align=AlignStyle.Center, Width=0.2 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Department/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- }
- };
- }
- @section scripts{
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- //刷新
- function reload() {
- $("#dgStaffList").cmsXDataTable("load", $.getDataGridParams("dgStaffList"));
- }
- //设置列颜色为红色
- function SetRedColumn(index, row, value) {
- return " <span style=\"color: red;\">" + value + "</span>";
- }
- //Excel导出
- function CollegeStaff_DetailExport() {
- $("#formQuery").submit();
- }
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <form id="formQuery" method="post" action="@Url.Content("~/College/StaffListExcel?collegeID=" + collegeID)">
- @Html.PositionCondition("CollegeStaff")
- <div class="search_keyword">
- <div class="search_input">
- <ul>
- <li class="sn" style="padding-left: 5px;">所属教研室:</li>
- <li class="sv">
- @Html.ComboGrid(cgopDepartment, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">教师类型:</li>
- <li class="sv">
- @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_TeacherType, DropdownListBindType.SelectAll,
- new ComboGridOptions
- {
- ID = "DictionaryTeacherType",
- Name = "DictionaryTeacherType",
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">职称:</li>
- <li class="sv">
- @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Title, DropdownListBindType.SelectAll,
- new ComboGridOptions
- {
- ID = "DictionaryTitle",
- Name = "DictionaryTitle",
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
- </li>
- </ul>
- <ul>
- <li class="sn" style="padding-left: 5px;">是否双师型:</li>
- <li class="sv">
- @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, DropdownListBindType.SelectAll,
- new ComboGridOptions
- {
- ID = "IsDualTeacherDropdown",
- Name = "IsDualTeacherDropdown",
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
- </li>
- <li class="sn" style="padding-left: 5px;color: red;">照片有无:</li>
- <li class="sv">
- @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_GeneralExist, DropdownListBindType.SelectAll,
- new ComboGridOptions
- {
- ID = "IsPhotoUrlDropdown",
- Name = "IsPhotoUrlDropdown",
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
- </li>
- <li class="sn" style="padding-left: 5px;color: red;">在职状态:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_IncumbencyState, new DropdownListOptions
- {
- ID = "DictionaryIncumbencyState",
- Name = "DictionaryIncumbencyState",
- BindType = DropdownListBindType.SelectAll,
- //SelectedValue = (int)EMIS.ViewModel.CF_IncumbencyState.Incumbency,
- OnSelect = "reload"
- },
- new Dictionary<string, string> { { "data-condition", "dgStaffList" } })
- @*@Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_IncumbencyState, DropdownListBindType.SelectAll,
- new ComboGridOptions
- {
- ID = "DictionaryIncumbencyState",
- Name = "DictionaryIncumbencyState",
- SelectedValue = (int)EMIS.ViewModel.CF_IncumbencyState.Incumbency,
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStaffList" } })*@
- </li>
- </ul>
- </div>
- </div>
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;"></div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("SfDetail")</div>
- </div>
- </form>
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" },
- new BoundFieldColumn { FieldName="StaffCode", HeaderText="教职工号", Align=AlignStyle.Center, Width=0.04 },
- new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 },
- new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, OrderFieldName="SexID", Width=0.02 },
- //new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Width=0.05, Formatter = Formatter.OnlyYearMonthDay },
- //new BoundFieldColumn { FieldName="NationName", HeaderText="民族", Align=AlignStyle.Center, OrderFieldName="NationID", Width=0.03 },
- new BoundFieldColumn { FieldName="TeacherTypeName", HeaderText="教师类型", Align=AlignStyle.Center, OrderFieldName="TeacherTypeID", Width=0.04 },
- new BoundFieldColumn { FieldName="IncumbencyStateName", HeaderText="在职状态", Align=AlignStyle.Center, OrderFieldName="IncumbencyState", Width=0.04 },
- new BoundFieldColumn { FieldName="TitleName", HeaderText="职称", Align=AlignStyle.Center, OrderFieldName="TitleID", Width=0.04 },
- new BoundFieldColumn { FieldName="OfficeTelephone", HeaderText="办公电话", Align=AlignStyle.Center, Width=0.065 },
- new BoundFieldColumn { FieldName="Mobile", HeaderText="移动电话", Align=AlignStyle.Center, Width=0.06 },
- new BoundFieldColumn { FieldName="PhotoHasValueName", HeaderText="照片", Align=AlignStyle.Center, OrderFieldName="PhotoHasValue", Width=0.02 },
- //new BoundFieldColumn { FieldName="CampusCode", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.05 },
- //new BoundFieldColumn { FieldName="CampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6 },
- //new BoundFieldColumn { FieldName="CollegeNo", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.05 },
- new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.08, OverflowLength=10 },
- //new BoundFieldColumn { FieldName="DepartmentCode", HeaderText="教研室代码", Align=AlignStyle.Center, Width=0.05 },
- new BoundFieldColumn { FieldName="DepartmentName", HeaderText="所属教研室", Align=AlignStyle.Center, Width=0.08, OverflowLength=10 }
- //new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.03, OverflowLength=5 }
- },
- IsPostBack = true,
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/College/StaffList?collegeID=" + collegeID),
- ID = "dgStaffList",
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- })
- </div>
- </div>
|