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

131 lines
4.5 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.CCParameters.PARAMETERSCONFIGModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
货架信息编辑
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<%=Html.QPEdit("货架信息编辑", string.IsNullOrEmpty(Model.pid) ? QMFrameWork.WebUI.panelType.Add : QMFrameWork.WebUI.panelType.Update)%>
<table id="editTable" cellpadding="0" cellspacing="0">
<tr>
<td>
<table>
<tr>
<th align="right">
<%=Html.QV(p=>p.supplier) %>
</th>
<td>
<%=Html.QC(p => p.supplier)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p=>p.supplierName) %>
</th>
<td>
<%=Html.QC(p => p.supplierName)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.vehicleType)%>
</th>
<td>
<%=Html.QC(p => p.vehicleType)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.partNumber)%>
</th>
<td>
<%=Html.QC(p => p.partNumber)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.partName)%>
</th>
<td>
<%=Html.QC(p => p.partName)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.variance)%>
</th>
<td>
<%=Html.QC(p => p.variance)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.station)%>
</th>
<td>
<%=Html.QC(p => p.station)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.parameter)%>
</th>
<td>
<%=Html.QC(p => p.parameter)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.lower_limit)%>
</th>
<td>
<%=Html.QC(p => p.lower_limit)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p => p.upper_limit)%>
</th>
<td>
<%=Html.QC(p => p.upper_limit)%>
</td>
</tr>
</table>
</td>
</tr>
</table>
<%=Html.HiddenFor(p => p.pid)%>
<%=Html.HiddenFor(p => p.createdata)%>
<%=Html.HiddenFor(p => p.creatauser)%>
<%=Html.QPEnd() %>
<script type="text/javascript">
function Save() {
if (isValidate() == false) {
return false;
}
submitByButton("Save");
}
$(function () {
$('#FACTORY_CODE').combobox({
panelWidth: '350'
});
});
</script>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td>
<%=Html.QTButtonSave("User", "Save", "return Save();")%>
<%=Html.QTButtonBack("close", "List", "parent.closeAppWindow1();return false;")%>
</td>
</tr>
</table>
</asp:Content>