73 lines
3.4 KiB
Plaintext
73 lines
3.4 KiB
Plaintext
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeldAppearanceCheckEdit.aspx.cs" Inherits="FineUIPro.Web.HJGL.WeldingManage.WeldAppearanceCheckEdit" %>
|
||
|
|
|
||
|
|
<!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="10px" runat="server" RedStarPosition="BeforeText">
|
||
|
|
<Rows>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:DropDownList ID="ddlWeldJoint" runat="server" Label="已焊接焊口" Required="true"
|
||
|
|
ShowRedStar="true" EnableEdit="true" LabelWidth="130px" />
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:DropDownList ID="ddlQualified" runat="server" Label="外观是否合格" Required="true"
|
||
|
|
ShowRedStar="true" LabelWidth="130px">
|
||
|
|
<f:ListItem Text="合格" Value="1" />
|
||
|
|
<f:ListItem Text="不合格" Value="0" />
|
||
|
|
</f:DropDownList>
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:DropDownList ID="ddlCheckPerson" runat="server" Label="检测人" Required="true"
|
||
|
|
ShowRedStar="true" EnableEdit="true" LabelWidth="130px" />
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:DatePicker ID="dpCheckTime" runat="server" Label="检测时间" Required="true"
|
||
|
|
ShowRedStar="true" LabelWidth="130px" />
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:TextArea ID="txtRemark" runat="server" Label="备注" MaxLength="500"
|
||
|
|
LabelWidth="130px" />
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:Button ID="btnAttach" runat="server" Text="上传/查看照片(必填)" Icon="TableCell"
|
||
|
|
OnClick="btnAttach_Click" />
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
</Rows>
|
||
|
|
<Toolbars>
|
||
|
|
<f:Toolbar runat="server" Position="Bottom" ToolbarAlign="Right">
|
||
|
|
<Items>
|
||
|
|
<f:Button ID="btnSave" runat="server" Text="保存" Icon="SystemSave"
|
||
|
|
ValidateForms="SimpleForm1" OnClick="btnSave_Click" />
|
||
|
|
<f:Button ID="btnClose" runat="server" Text="关闭" Icon="SystemClose"
|
||
|
|
EnablePostBack="false" />
|
||
|
|
</Items>
|
||
|
|
</f:Toolbar>
|
||
|
|
</Toolbars>
|
||
|
|
</f:Form>
|
||
|
|
<f:Window ID="WindowAtt" Title="外观检测照片" Hidden="true" EnableIFrame="true"
|
||
|
|
EnableMaximize="true" Target="Parent" runat="server" IsModal="true" Width="720px"
|
||
|
|
Height="440px" />
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|