You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.0 KiB
81 lines
3.0 KiB
4 years ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.Sys.RoleModel>" %>
|
||
|
|
||
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
||
|
角色信息列表
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
||
|
|
||
|
<%=Html.QPSeach(80,true) %>
|
||
|
<table id="condiTable">
|
||
|
<tr>
|
||
|
<th align=right><%=Html.QV(p=>p.RoleDESC) %></th>
|
||
|
<td><%=Html.QC(p => p.RoleDESC)%>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<%=Html.QPEnd()%>
|
||
|
<%=Html.QPList() %>
|
||
|
<%=Html.QDateGrid<QMAPP.Web.Models.Sys.RoleModel>(Model)%>
|
||
|
<%=Html.QPEnd() %>
|
||
|
<%=Html.Hidden("selectKey")%>
|
||
|
|
||
|
<script language="javascript">
|
||
|
|
||
|
//增加角色信息
|
||
|
function Add() {
|
||
|
openAppWindow1('添加角色', 'RoleEdit', '520', '480');
|
||
|
}
|
||
|
//修改用户信息
|
||
|
function Edit() {
|
||
|
var ids = getSelectKey();
|
||
|
if (ids == "") {
|
||
|
MSI("提示", "请选择修改记录。");
|
||
|
return;
|
||
|
}
|
||
|
if (ids.indexOf(":") > 0) {
|
||
|
MSI("提示", "每次只能修改一条记录。");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
openAppWindow1('修改角色', 'RoleEdit?RoleID=' + ids, '520', '480');
|
||
|
}
|
||
|
//删除
|
||
|
function Delete() {
|
||
|
var ids = getSelectKey();
|
||
|
|
||
|
if (ids == "") {
|
||
|
MSI("错误", "至少选择一个用户信息!");
|
||
|
}
|
||
|
else {
|
||
|
document.getElementById("selectKey").value = ids;
|
||
|
MSQ("提示", "确定要删除选中的记录吗?", function () {
|
||
|
submitByButton("RoleDelete");
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//导出
|
||
|
function Export() {
|
||
|
var dg = $('#QDateGrid').datagrid();
|
||
|
document.getElementById("selectKey").value = getSelectKey();
|
||
|
submitByButton("ExportExcel");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
||
|
<table id="EditTable" cellpadding=0 cellspacing=0>
|
||
|
<tr>
|
||
|
<td align="center">
|
||
|
<%=Html.QTButtonSearch("Role", "RoleList", "List(1)", QMAPP.Common.Web.SystemLimit.isLimt)%>
|
||
|
<%=Html.QTButtonAdd("Role", "RoleAdd", "Add();", QMAPP.Common.Web.SystemLimit.isLimt)%>
|
||
|
<%=Html.QTButtonUpdate("Role", "RoleEdit", "Edit()", QMAPP.Common.Web.SystemLimit.isLimt)%>
|
||
|
<%=Html.QTButtonDelete("Role", "RoleDelete", "Delete()", QMAPP.Common.Web.SystemLimit.isLimt)%>
|
||
|
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", QMAPP.Common.Web.SystemLimit.isLimt)%>
|
||
|
<%-- <%=Html.QTButton("help", "", "help", "SysHelp('01010000','RoleModel')", (s, f) => { return true; })%> --%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</asp:Content>
|