123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Entities;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- ComboGridOptions cgop = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CampusID",
- OnSelect = "QueryCampusDropdownList",
- Name = "CampusDropdown",
- ID = "CampusDropdown",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- // new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.1 },
- new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center, Width=0.1 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Campus/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions cgopCollege = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CollegeID",
- OnSelect = "QueryCollegeDropdownList",
- Name = "CollegeDropdown",
- ID = "CollegeDropdown",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- // new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.1 },
- new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center, Width=0.2 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/College/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions cgopDepartment = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "DepartmentID",
- OnSelect = "QueryDepartmentDropdownList",
- Name = "DepartmentDropdown",
- ID = "DepartmentDropdown",
- 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 src="~/Scripts/Business/System/User.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- <div class="p_SearchTitle">
- <div style="float: left; margin-left: 10px; font-size: 12px; line-height: 30px;">
- 查询条件</div>
- </div>
- <form id="formQuery" method="post" action="@Url.Content("~/User/Excel")">
- @Html.PositionCondition()
- <div class="search_keyword">
- <div class="search_input">
- <ul>
- <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("Campus"):</li>
- <li class="sv">
- @Html.ComboGrid(cgop, new Dictionary<string, string> { { "data-condition", "dgUserList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
- <li class="sv">
- @Html.ComboGrid(cgopCollege, new Dictionary<string, string> { { "data-condition", "dgUserList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">教研室:</li>
- <li class="sv">
- @Html.ComboGrid(cgopDepartment, new Dictionary<string, string> { { "data-condition", "dgUserList" } })
- </li>
- </ul>
- <ul>
- <li class="sn" style="padding-left: 5px;">角色名称:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = "~/Role/RoleDropdownList", ID = "Role", Name = "Role", OnSelect = "reload" }, new Dictionary<string, string> { { "data-condition", "dgUserList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">数据范围:</li>
- <li class="sv">
- @Html.DictionaryDropDownListForSearch(EMIS.ViewModel.DictionaryItem.SYS_DataRange, "dgUserList", new DropdownListOptions { ID = "DataRange", Name = "DataRange", OnSelect = "reload" })
- </li>
- <li class="sn" style="padding-left: 5px;">帐号状态:</li>
- <li class="sv">
- @Html.DictionaryDropDownListForSearch(EMIS.ViewModel.DictionaryItem.SYS_STATUS, "dgUserList", new DropdownListOptions { ID = "Stauts", Name = "Stauts", OnSelect = "reload" })
- </li>
- </ul>
- </div>
- <div style="padding-left: 5px;">
- @*角色名称:@Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = "~/Role/RoleDropdownList", ID = "Role", Name = "Role", OnSelect = "reload" }, new Dictionary<string, string> { { "data-condition", "dgUserList" } })
- 数据范围:@Html.DictionaryDropDownListForSearch(EMIS.ViewModel.DictionaryItem.SYS_DataRange, "dgUserList", new DropdownListOptions { ID = "DataRange", Name = "DataRange", OnSelect = "reload" })
- 帐号状态:@Html.DictionaryDropDownListForSearch(EMIS.ViewModel.DictionaryItem.SYS_STATUS, "dgUserList", new DropdownListOptions { ID = "Stauts", Name = "Stauts", OnSelect = "reload" })
- *@</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("List")</div>
- </div>
- </form>
- @Html.PositionBatchModify()
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID"},
- new BoundFieldColumn { FieldName="LoginID", HeaderText="用户名", Align=AlignStyle.Center, Width=0.05 },
- new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 },
- new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, OrderFieldName="SexID", Width=0.03 },
- //new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Formatter = Formatter.OnlyYearMonthDay, Width=0.06 },
- new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.08, OverflowLength=10 },
- new BoundFieldColumn { FieldName="RoleOrderNo", HeaderText="角色序号", Align=AlignStyle.Center, Width=0.04 },
- new BoundFieldColumn { FieldName="RoleName", HeaderText="角色名称", Align=AlignStyle.Center, Width=0.05, OverflowLength=6 },
- //new BoundFieldColumn { FieldName="TypeName", HeaderText="角色类型", Align=AlignStyle.Center, OrderFieldName="TypeID", Width=0.04 },
- new BoundFieldColumn { FieldName="DataRangeName", HeaderText="数据范围", Align=AlignStyle.Center, OrderFieldName="DataRange", Width=0.04 },
- new BoundFieldColumn { FieldName="RecordStatusName", HeaderText="帐号状态", Align=AlignStyle.Center, OrderFieldName="RecordStatus", Width=0.04 },
- new BoundFieldColumn { FieldName="CreateTime", HeaderText="创建时间", Formatter=Formatter.LongDate, Align=AlignStyle.Center, Width=0.08 },
- new BoundFieldColumn { FieldName="ModifyTime", HeaderText="修改时间", Formatter=Formatter.LongDate, Align=AlignStyle.Center, Width=0.08 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/User/List"),
- ID = "dgUserList",
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- })
- </div>
- </div>
|