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

88 lines
3.1 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.QPEdit()%>
<table id="editTable" cellpadding="0" cellspacing="0">
<tr>
<td>
<table>
<tr>
<th align="right">
<%=Html.QV(p=>p.OPERATETIME) %>
</th>
<td>
<%=Html.QReadOnlyTextboxFor(p=>p.OPERATETIME) %>
</td>
<th align="right">
<%=Html.QV(p=>p.OPERATEUSER) %>
</th>
<td>
<%=Html.QReadOnlyTextboxFor(p => p.OPERATEUSER)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p=>p.OPERATETYPE) %>
</th>
<td>
<%=Html.QReadOnlyTextboxFor(p=>p.OPERATETYPE) %>
</td>
<th align="right">
<%=Html.QV(p=>p.DATAKIND) %>
</th>
<td>
<%=Html.QReadOnlyTextboxFor(p => p.DATAKIND)%>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align=left height="30px">变更明细</td>
</tr>
<tr>
<td>
<table id="dataList" style="width:530px;height:260px" iconCls="icon-edit">
<thead>
<tr>
<th field="ColumnDes" align="left" width="100">数据项名</th>
<th field="OldValue" align="left" width="200">原数据</th>
<th field="NewValue" align="left" width="200">变更后数据</th>
</tr>
</thead>
</table>
</td>
</tr>
</table>
<%=Html.HiddenFor(p=>p.Detail) %>
<script language="javascript">
$(function () {
var dataMarkData = JSON.parse(document.getElementById("Detail").value);
//设置零件类别权限表
$('#dataList').datagrid({
});
$('#dataList').datagrid("loadData", dataMarkData);
});
</script>
<%=Html.QPEnd() %>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td>
<%=Html.QTButton("close", "NoticeList", "close", "parent.closeAppWindow1();return false;", (s, f) => { return true; })%>
</td>
</tr>
</table>
</asp:Content>