feat(hjgl): 新增防腐等级字典管理
将防腐等级维护纳入焊接设置菜单,便于统一维护防腐等级编码并复用系统权限配置。
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PaintCodeDictEdit.aspx.cs" Inherits="FineUIPro.Web.HJGL.BaseInfo.PaintCodeDictEdit" %>
|
||||
|
||||
<!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" runat="server" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
||||
BodyPadding="10px" RedStarPosition="BeforeText" LabelAlign="Right">
|
||||
<Rows>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtPaintCode" runat="server" Label="防腐等级" Required="true"
|
||||
MaxLength="50" ShowRedStar="true" FocusOnPageLoad="true" LabelWidth="120px" />
|
||||
<f:TextBox ID="txtColorCode" runat="server" Label="色标" MaxLength="100" LabelWidth="120px" />
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtPrimer" runat="server" Label="底漆" MaxLength="300" LabelWidth="120px" />
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtIntermediatePaint" runat="server" Label="中间漆" MaxLength="300" LabelWidth="120px" />
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtTopcoat" runat="server" Label="面漆" MaxLength="300" LabelWidth="120px" />
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:NumberBox ID="txtSortIndex" runat="server" Label="排序" DecimalPrecision="0"
|
||||
NoNegative="true" LabelWidth="120px" />
|
||||
<f:CheckBox ID="chkIsUsed" runat="server" Label="启用" Checked="true" LabelWidth="120px" />
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
</Rows>
|
||||
<Toolbars>
|
||||
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
||||
<Items>
|
||||
<f:Button ID="btnSave" runat="server" Icon="SystemSave" ValidateForms="SimpleForm1"
|
||||
OnClick="btnSave_Click" ToolTip="保存" />
|
||||
<f:Button ID="btnClose" runat="server" Text="关闭" Icon="SystemClose" EnablePostBack="false" />
|
||||
</Items>
|
||||
</f:Toolbar>
|
||||
</Toolbars>
|
||||
</f:Form>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user