危险源管理模块接入真实数据库:新增危大/超危工程、风险控制清单、安全验收、安全巡检、临时用电管理(含前端页面、BLL/API服务、WebAPI控制器、Model项、SQL脚本与接口文档)
排除 CreateModel.bat(含明文sa密码与本地服务器名,未入库)
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PowerBoxEdit.aspx.cs" Inherits="FineUIPro.Web.HSSE.PowerMG.PowerBoxEdit" %>
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head runat="server">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>编辑配电箱</title>
|
||||
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<form id="form1" runat="server">
|
||||
<f:PageManager ID="PageManager1" runat="server" AutoSizePanelID="SimpleForm1"/>
|
||||
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" Title="配电箱信息" AutoScroll="true"
|
||||
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||||
<Rows>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtPowerBoxCode" runat="server" Label="编号" LabelAlign="Right"
|
||||
MaxLength="50" Required="true" ShowRedStar="true" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
<f:TextBox ID="txtPowerBoxName" runat="server" Label="名称/型号" LabelAlign="Right"
|
||||
MaxLength="100" Required="true" ShowRedStar="true" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:DropDownList ID="ddlBoxType" runat="server" Label="类型" LabelAlign="Right"
|
||||
LabelWidth="90px" Required="true" ShowRedStar="true">
|
||||
<f:ListItem Text="总配电箱" Value="总配电箱" />
|
||||
<f:ListItem Text="分配电箱" Value="分配电箱" />
|
||||
<f:ListItem Text="开关箱" Value="开关箱" />
|
||||
</f:DropDownList>
|
||||
<f:TextBox ID="txtInstallPlace" runat="server" Label="安装位置" LabelAlign="Right"
|
||||
MaxLength="200" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtRatedCapacity" runat="server" Label="额定容量(A)" LabelAlign="Right"
|
||||
MaxLength="20" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
<f:DropDownList ID="ddlVoltageLevel" runat="server" Label="电压等级" LabelAlign="Right"
|
||||
LabelWidth="90px">
|
||||
<f:ListItem Text="380V" Value="380V" Selected="true" />
|
||||
<f:ListItem Text="220V" Value="220V" />
|
||||
</f:DropDownList>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtManagerUnit" runat="server" Label="责任单位" LabelAlign="Right"
|
||||
MaxLength="100" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
<f:TextBox ID="txtManagerMan" runat="server" Label="责任人" LabelAlign="Right"
|
||||
MaxLength="50" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtManagerTel" runat="server" Label="联系电话" LabelAlign="Right"
|
||||
MaxLength="20" LabelWidth="90px">
|
||||
</f:TextBox>
|
||||
<f:DropDownList ID="ddlStates" runat="server" Label="状态" LabelAlign="Right"
|
||||
LabelWidth="90px">
|
||||
<f:ListItem Text="正常" Value="正常" Selected="true" />
|
||||
<f:ListItem Text="停用" Value="停用" />
|
||||
<f:ListItem Text="维修中" Value="维修中" />
|
||||
</f:DropDownList>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:DatePicker ID="dpLastCheckDate" runat="server" Label="最近巡检日期" LabelAlign="Right"
|
||||
LabelWidth="90px" DateFormatString="yyyy-MM-dd">
|
||||
</f:DatePicker>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtRemark" runat="server" Label="备注" LabelAlign="Right" Height="80px"
|
||||
MaxLength="500" LabelWidth="90px">
|
||||
</f:TextArea>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
</Rows>
|
||||
<Toolbars>
|
||||
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
||||
<Items>
|
||||
<f:ToolbarFill ID="ToolbarFill1" runat="server">
|
||||
</f:ToolbarFill>
|
||||
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ToolTip="保存" ValidateForms="SimpleForm1"
|
||||
OnClick="btnSave_Click">
|
||||
</f:Button>
|
||||
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose">
|
||||
</f:Button>
|
||||
</Items>
|
||||
</f:Toolbar>
|
||||
</Toolbars>
|
||||
</f:Form>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user