feat(hjgl):增加焊接日报待审核表格编辑

This commit is contained in:
2026-08-20 11:32:01 +08:00
parent 42787c1520
commit d038c516ea
9 changed files with 266 additions and 2 deletions
@@ -0,0 +1,50 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeldingDailyTempDetailEdit.aspx.cs" Inherits="FineUIPro.Web.HJGL.WeldingManage.WeldingDailyTempDetailEdit" %>
<!DOCTYPE html>
<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="12px" runat="server">
<Rows>
<f:FormRow>
<Items>
<f:TextBox ID="txtPipelineCode" runat="server" Label="管线号" Readonly="true" LabelWidth="90px" />
<f:TextBox ID="txtWeldJointCode" runat="server" Label="焊口号" Readonly="true" LabelWidth="90px" />
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpWeldingMethod" runat="server" Label="焊接方法"
EnableEdit="true" LabelWidth="90px" />
<f:DropDownList ID="drpWeldType" runat="server" Label="焊缝类型"
EnableEdit="true" LabelWidth="90px" />
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpWeldingWire" runat="server" Label="焊丝"
EnableEdit="true" LabelWidth="90px" />
<f:DropDownList ID="drpWeldingRod" runat="server" Label="焊条"
EnableEdit="true" LabelWidth="90px" />
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar runat="server" Position="Bottom" ToolbarAlign="Right">
<Items>
<f:Button ID="btnSave" runat="server" Text="保存" Icon="SystemSave" OnClick="btnSave_Click" />
<f:Button ID="btnClose" runat="server" Text="关闭" Icon="SystemClose" EnablePostBack="false" />
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
</form>
</body>
</html>