bb6615ebb0
焊前检查需要同时覆盖下料、组对和防腐检查,并支持移动端查询与保存。 扩展焊前检查模型、服务和页面字段,补充检查结果、不合格原因、整改要求、 附件和防腐检查记录,便于按焊口和材料追溯检查过程。
96 lines
4.7 KiB
Plaintext
96 lines
4.7 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AntiCorrosionCheckRecordView.aspx.cs" Inherits="FineUIPro.Web.CLGL.AntiCorrosionCheckRecordView" %>
|
|
|
|
<!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" LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtMaterialCode" runat="server" Label="材料编码" Readonly="true" LabelWidth="160px" />
|
|
<f:TextBox ID="txtMaterialName" runat="server" Label="材料名称" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtMaterialSpec" runat="server" Label="规格" Readonly="true" LabelWidth="160px" />
|
|
<f:TextBox ID="txtMaterialMade" runat="server" Label="材质" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtPaintCode" runat="server" Label="涂漆代码" Readonly="true" LabelWidth="160px" />
|
|
<f:TextBox ID="txtAnticorrosionLevel" runat="server" Label="防腐等级" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtIntermediatePaint" runat="server" Label="中间漆" Readonly="true" LabelWidth="160px" />
|
|
<f:TextBox ID="txtTopcoat" runat="server" Label="面漆" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtFilmThickness" runat="server" Label="膜厚" Readonly="true" LabelWidth="160px" />
|
|
<f:TextBox ID="txtCheckPerson" runat="server" Label="检查人" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtSandBlasting" runat="server" Label="喷砂信息" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtRustSandBlasting" runat="server" Label="除锈喷砂信息" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtCheckResult" runat="server" Label="检查结果" Readonly="true" LabelWidth="160px" />
|
|
<f:TextBox ID="txtCheckTime" runat="server" Label="检查时间" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtUnqualifiedReason" runat="server" Label="不合格原因" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtRectifyRequirement" runat="server" Label="整改要求" Readonly="true" LabelWidth="160px" />
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtRemark" runat="server" Label="备注" Readonly="true" 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="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>
|