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

86 lines
2.8 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.WarnManage.WarnDetailModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
报警通知人员列表
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<%=Html.QPSeach(100,true) %>
<table id="condiTable">
<tr>
<th align="right">
<%=Html.QV(p => p.INFORMNAME)%>
</th>
<td>
<%=Html.QC(p => p.INFORMNAME)%>
</td>
<th align="right">
<%=Html.QV(p => p.INFORMCODE)%>
</th>
<td>
<%=Html.QC(p => p.INFORMCODE)%>
</td>
<th align="right">
<%=Html.QV(p => p.INFOTYPE)%>
</th>
<td>
<%=Html.QC(p => p.INFOTYPE)%>
</td>
<th align="right">
<%=Html.QV(p => p.MAIL)%>
</th>
<td>
<%=Html.QC(p => p.MAIL)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.MOBILEPHONENUMBER)%>
</th>
<td>
<%=Html.QC(p => p.MOBILEPHONENUMBER)%>
</td>
<th align="right">
<%=Html.QV(p => p.STARTCREATEDATE)%>
</th>
<td>
<%=Html.QC(p => p.STARTCREATEDATE)%>
</td>
<th align="right">
<%=Html.QV(p => p.ENDCREATEDATE)%>
</th>
<td>
<%=Html.QC(p => p.ENDCREATEDATE)%>
</td>
</tr>
</table>
<div style="left: 1px; position: relative;">
</div>
<%=Html.QPEnd()%>
<%=Html.QPList() %>
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.WarnManage.WarnDetailModel>(Model)%>
<%=Html.QPEnd() %>
<%=Html.HiddenFor(p=>p.WPID)%>
<%=Html.Hidden("selectKey")%>
<script language="javascript" type="text/javascript">
//查询
function Search() {
if (parseDate($("#STARTCREATEDATE").val()) > parseDate($("#ENDCREATEDATE").val())) {
alert("开始时间不能大于结束时间!");
return;
}
List(1)
}
</script>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
<table cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<%=Html.QTButtonSearch("WarnInfo", "List", "Search()", QMAPP.Common.Web.SystemLimit.isLimt)%>
<%=Html.QTButtonBack("close", "List", "parent.closeAppWindow1();return false;")%>
</td>
</tr>
</table>
</asp:Content>