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.
40 lines
1.4 KiB
40 lines
1.4 KiB
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.Report.DataTaskLogModel>" %>
|
|
|
|
<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.StartTime) %></th><td><%=Html.QC(p=>p.StartTime) %></td>
|
|
<th align=right><%=Html.QV(p=>p.EndTime) %></th><td><%=Html.QC(p=>p.EndTime) %></td>
|
|
</tr>
|
|
</table>
|
|
<%=Html.QPEnd()%>
|
|
<%=Html.QPList() %>
|
|
<%=Html.QDateGrid<QMAPP.Web.Models.Report.DataTaskLogModel>(Model)%>
|
|
<%=Html.QPEnd() %>
|
|
<%=Html.Hidden("selectKey")%>
|
|
<%=Html.HiddenFor(p=>p.PLANID) %>
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
//导出
|
|
function Export() {
|
|
submitByButton("ExportLogList");
|
|
}
|
|
</script>
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
|
<table cellpadding=0 cellspacing=0>
|
|
<tr>
|
|
<td>
|
|
<%=Html.QTButtonSearch("Monitor", "TaskLogList", "List()")%>
|
|
<%=Html.QTButton("export", "ExportExcel",QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</asp:Content>
|
|
|