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.
59 lines
1.9 KiB
59 lines
1.9 KiB
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.Sys.SystemOperateLogModel>" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
系统操作日志
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
<%=Html.QPSeach(120,true) %>
|
|
<table id="condiTable">
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.UserID)%>
|
|
</th>
|
|
<td>
|
|
<%=Html.QC(p => p.UserID)%>
|
|
</td>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.OperateType)%>
|
|
</th>
|
|
<td>
|
|
<%=Html.QC(p => p.OperateType)%>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.StartDate)%>
|
|
</th>
|
|
<td>
|
|
<%=Html.QC(p => p.StartDate)%>
|
|
</td>
|
|
<th align="right">
|
|
<%=Html.QV(p=>p.EndDate) %>
|
|
</th>
|
|
<td>
|
|
<%=Html.QC(p => p.EndDate)%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<%=Html.QPEnd()%>
|
|
<%=Html.QPList() %>
|
|
<%=Html.QDateGrid<QMAPP.Web.Models.Sys.SystemOperateLogModel>(Model)%>
|
|
<%=Html.QPEnd() %>
|
|
|
|
</asp:Content>
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
|
<table id="EditTable" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
<%=Html.QTButtonSearch("SystemLog", "SystemOperateLogList", "List(1)")%>
|
|
<%=Html.QTButton("export", "ExportExcel",QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script type="text/javascript" >
|
|
//导出
|
|
function Export() {
|
|
submitByButton("ExportExcel");
|
|
}
|
|
</script>
|
|
</asp:Content>
|
|
|