天津投入产出系统后端
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.
 
 
 
 
 
 

94 lines
3.5 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.Sys.OrgaizationModel>" %>
<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.OrgaDESC) %></th>
<td><%=Html.QC(p => p.OrgaDESC, new {title="请输入组织名称进行查询" })%>
</td>
</tr>
</table>
<%=Html.QPEnd()%>
<%=Html.QPList() %>
<%=Html.QDateGrid<QMAPP.Web.Models.Sys.OrgaizationModel>(Model)%>
<%=Html.QPEnd() %>
<%=Html.Hidden("selectKey")%>
<script language="javascript" type="text/javascript">
//增加用户组
function Add() {
openAppWindow1('添加组织机构', 'OrgaizationEdit', '520', '480');
}
//修改用户组
function Edit() {
var ids = getSelectKey();
if (ids == "") {
MSI("提示", "请选择修改记录。");
return;
}
if (ids.indexOf(":") > 0) {
MSI("提示", "每次只能修改一条记录。");
return;
}
openAppWindow1('修改组织机构', 'OrgaizationEdit?orgaID=' + ids, '520', '480');
}
//删除
function Delete() {
var ids = getSelectKey();
if (ids == "") {
MSI("错误", "至少选择一条记录!");
}
else {
document.getElementById("selectKey").value = ids;
MSQ("提示", "确定要删除选中的记录吗?", function () {
submitByButton("OrgaizationDelete");
})
}
}
//添加用户组下的人员
function AddUser() {
var ids = getSelectKey();
if (ids == "") {
MSI("错误", "至少选择一条记录!");
}
else {
if (ids.indexOf(":") > 0) {
MSI("提示", "每次只能修改一条记录。");
return;
}
document.getElementById("selectKey").value = ids;
openAppWindow1('人员', 'OrgaizationUser?orgaID=' + ids, '800', '600');
}
}
//导出
function Export() {
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("Orgaization", "OrgaizationList", QMAPP.Common.Web.SystemLimit.isLimt)%>
<%=Html.QTButtonAdd("Orgaization", "OrgaizationAdd", "Add();", QMAPP.Common.Web.SystemLimit.isLimt)%>
<%=Html.QTButtonUpdate("Orgaization", "OrgaizationEdit", "Edit()", QMAPP.Common.Web.SystemLimit.isLimt)%>
<%=Html.QTButtonDelete("Orgaization", "OrgaizationDelete", "Delete()", QMAPP.Common.Web.SystemLimit.isLimt)%>
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", QMAPP.Common.Web.SystemLimit.isLimt)%>
</td>
</tr>
</table>
</asp:Content>