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

67 lines
2.4 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.Sys.DataMarkModel>" %>
<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.STARTOPERATETIME)%>
</th>
<td>
<%=Html.QC(p => p.STARTOPERATETIME)%>
</td>
<th align="right">
<%=Html.QV(p=>p.ENDOPERATETIME) %>
</th>
<td>
<%=Html.QC(p=>p.ENDOPERATETIME) %>
</td>
<th align="right">
<%=Html.QV(p=>p.OPERATEUSER) %>
</th>
<td>
<%=Html.QC(p=>p.OPERATEUSER) %>
</td>
<th align="right">
<%=Html.QV(p=>p.DATAKIND) %>
</th>
<td>
<%=Html.QC(p=>p.DATAKIND) %>
</td>
</tr>
</table>
<%=Html.QPEnd()%>
<%=Html.QPList() %>
<%=Html.QDateGrid<QMAPP.Web.Models.Sys.DataMarkModel>(Model)%>
<%=Html.QPEnd() %>
<script language="javascript" type="text/javascript">
//查看明细
function ShowDetail() {
var ids = getSelectKey();
if (ids == "") {
MSI("提示", "请选择一条记录。");
return;
}
if (ids.indexOf(":") > 0) {
MSI("提示", "每次只能查看一条记录。");
return;
}
openAppWindow1('查看明细', 'ShowDetail?id=' + ids, '600', '440');
}
</script>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
<table cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<%=Html.QTButtonSearch("DataMark", "DataMarkList", "List(1)")%>
<%=Html.QTButton("showDetail", "ShowDetail", QMFrameWork.WebUI.IconCls.detail, "ShowDetail()", (s, f) => { return true; })%>
<%-- <%=Html.QTButton("help", "", "help", "SysHelp('01070000','DataMarkModel')", (s, f) => { return true; })%>--%>
</td>
</tr>
</table>
</asp:Content>