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.
78 lines
2.5 KiB
78 lines
2.5 KiB
4 years ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
|
||
|
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.WIPManage.DetentionModel>" %>
|
||
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
||
|
滞留品查询
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
||
|
|
||
|
<%=Html.QPSeach(100,true) %>
|
||
|
<table id="condiTable" >
|
||
|
<tr>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.EPIDERMISCODE)%>
|
||
|
</th>
|
||
|
<td align="left" >
|
||
|
<%=Html.QC(p => p.EPIDERMISCODE)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.DetentionTimeCount)%>
|
||
|
</th>
|
||
|
<td align="left" >
|
||
|
<%=Html.QC(p => p.DetentionTimeCount)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.HB)%>
|
||
|
</th>
|
||
|
<td align="left" >
|
||
|
<%=Html.QC(p => p.HB)%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.COLOR)%>
|
||
|
</th>
|
||
|
<td align="left" >
|
||
|
<%=Html.QC(p => p.COLOR)%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<div style="left: 1px; position: relative;"></div>
|
||
|
|
||
|
<%=Html.QPEnd()%>
|
||
|
<%=Html.QPList() %>
|
||
|
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.WIPManage.DetentionModel>(Model)%>
|
||
|
<%=Html.QPEnd() %>
|
||
|
<%=Html.Hidden("selectKey")%>
|
||
|
|
||
|
<script language="javascript" type="text/javascript">
|
||
|
|
||
|
//导出
|
||
|
function Export() {
|
||
|
document.getElementById("selectKey").value = getSelectKey();
|
||
|
submitByButton("ExportExcel");
|
||
|
}
|
||
|
|
||
|
function Search() {
|
||
|
// if (/\D/.test($("#DetentionTimeCount").val())) {
|
||
|
// MSI("提示", "滞留品时长只能输入数字!");
|
||
|
// $("#DetentionTimeCount").val("");
|
||
|
// return;
|
||
|
// }
|
||
|
List(1);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</asp:Content>
|
||
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
||
|
<table cellpadding="0" cellspacing="0">
|
||
|
<tr>
|
||
|
<td align="center">
|
||
|
<%=Html.QTButtonSearch("Detention", "List", "Search()")%>
|
||
|
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</asp:Content>
|
||
|
|