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.
58 lines
2.0 KiB
58 lines
2.0 KiB
4 years ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
|
||
|
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.ProductPetrospect.ProductInjectionModel>" %>
|
||
|
|
||
|
<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.PRODUCTCODE)%>
|
||
|
</th>
|
||
|
<td align="left">
|
||
|
<%=Html.QC(p => p.PRODUCTCODE)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.MAINCODE)%>
|
||
|
</th>
|
||
|
<td align="left">
|
||
|
<%=Html.QC(p => p.MAINCODE)%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<div style="left: 1px; position: relative;">
|
||
|
</div>
|
||
|
<%=Html.QPEnd()%>
|
||
|
<%=Html.QPList() %>
|
||
|
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.ProductPetrospect.ProductInjectionModel>(Model)%>
|
||
|
<%=Html.QPEnd() %>
|
||
|
<%=Html.Hidden("selectKey")%>
|
||
|
<script language="javascript" type="text/javascript">
|
||
|
|
||
|
|
||
|
//导出
|
||
|
function Export() {
|
||
|
document.getElementById("selectKey").value = getSelectKey();
|
||
|
submitByButton("ExportExcel");
|
||
|
}
|
||
|
//重置
|
||
|
function Reset() {
|
||
|
//清空表皮条码
|
||
|
$('#PRODUCTCODE').val("");
|
||
|
}
|
||
|
</script>
|
||
|
</asp:Content>
|
||
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
||
|
<table cellpadding="0" cellspacing="0">
|
||
|
<tr>
|
||
|
<td align="center">
|
||
|
<%=Html.QTButtonSearch("ProductInjection", "List", "List(1)")%>
|
||
|
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
|
||
|
<%=Html.QTButton("reset", "", QMFrameWork.WebUI.IconCls.reset, "Reset()", (s, f) => { return true; })%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</asp:Content>
|