bb6615ebb0
焊前检查需要同时覆盖下料、组对和防腐检查,并支持移动端查询与保存。 扩展焊前检查模型、服务和页面字段,补充检查结果、不合格原因、整改要求、 附件和防腐检查记录,便于按焊口和材料追溯检查过程。
104 lines
4.7 KiB
Plaintext
104 lines
4.7 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AntiCorrosionCheckRecordEdit.aspx.cs" Inherits="FineUIPro.Web.CLGL.AntiCorrosionCheckRecordEdit" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<title>防腐检查记录</title>
|
|
<base target="_self" />
|
|
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
|
|
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtMaterialCode" runat="server" Label="材料编码" Required="true"
|
|
ShowRedStar="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpPaintId" runat="server" Label="涂漆代码" Required="true"
|
|
ShowRedStar="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtAnticorrosionLevel" runat="server" Label="防腐等级" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:NumberBox ID="numFilmThickness" runat="server" Label="膜厚" LabelWidth="160px"
|
|
DecimalPrecision="2" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtSandBlasting" runat="server" Label="喷砂信息" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtRustSandBlasting" runat="server" Label="除锈喷砂信息" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="ddlCheckResult" runat="server" Label="检查结果" LabelWidth="160px" Required="true" ShowRedStar="true">
|
|
<f:ListItem Text="合格" Value="合格" />
|
|
<f:ListItem Text="不合格" Value="不合格" />
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpCheckPerson" runat="server" Label="检查人" LabelWidth="160px" Required="true"
|
|
ShowRedStar="true" EnableEdit="true" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DatePicker ID="dpCheckTime" runat="server" Label="检查时间" LabelWidth="160px"
|
|
DateFormatString="yyyy-MM-dd" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtUnqualifiedReason" runat="server" Label="不合格原因" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtRectifyRequirement" runat="server" Label="整改要求" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtRemark" runat="server" Label="备注" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:Button ID="btnAttachUrl" Text="附件" Icon="TableCell" runat="server" OnClick="btnAttachUrl_Click" />
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:Button ID="btnSave" Text="保存" Icon="SystemSave" runat="server" OnClick="btnSave_Click" ValidateForms="SimpleForm1" />
|
|
<f:Button ID="btnClose" EnablePostBack="false" Text="关闭" runat="server" Icon="SystemClose" />
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Form>
|
|
<f:Window ID="WindowAtt" Title="附件上传" Hidden="true" EnableMaximize="true" EnableIFrame="true"
|
|
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px" Height="420px" />
|
|
</form>
|
|
</body>
|
|
</html>
|