93 lines
4.3 KiB
Plaintext
93 lines
4.3 KiB
Plaintext
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SYProjectSave.aspx.cs" Inherits="FineUIPro.Web.SYHSE.SYProjectSave" %>
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head runat="server">
|
||
|
<title></title>
|
||
|
<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" LabelAlign="Right">
|
||
|
<Rows>
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
<f:TextBox ID="txtPeopleNum" runat="server" Label="人员数量" MaxLength="100"
|
||
|
>
|
||
|
</f:TextBox>
|
||
|
<f:TextBox ID="txtSafePeopleNum" runat="server" Label="安管人员" MaxLength="100"
|
||
|
>
|
||
|
</f:TextBox>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
<f:TextBox ID="txtInstallationTotal" runat="server" Label="装置总数" MaxLength="100"
|
||
|
>
|
||
|
</f:TextBox>
|
||
|
<f:TextBox ID="txtInstallationRun" runat="server" Label="运行装置" MaxLength="100"
|
||
|
>
|
||
|
</f:TextBox>
|
||
|
|
||
|
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
<f:FormRow >
|
||
|
<Items>
|
||
|
<f:TextBox ID="txtInstallationStop" runat="server" Label="停产装置" MaxLength="100"
|
||
|
>
|
||
|
</f:TextBox>
|
||
|
<f:TextBox ID="txtInstallationOverHaul" runat="server" Label="检修装置" MaxLength="100"
|
||
|
>
|
||
|
</f:TextBox>
|
||
|
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
<f:FormRow >
|
||
|
<Items>
|
||
|
|
||
|
<f:DropDownList ID="drpState" runat="server" Label="项目状态" LabelAlign="Right" >
|
||
|
<f:ListItem Text="在建" Value="1" Selected="true" />
|
||
|
<f:ListItem Text="在役" Value="2" />
|
||
|
</f:DropDownList>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
<f:TextBox ID="txtRawMaterial" runat="server" Label="主要原料" MaxLength="500" ></f:TextBox>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
<f:FormRow>
|
||
|
<Items>
|
||
|
<f:TextBox ID="txtProduct" runat="server" Label="主要产品" MaxLength="500" ></f:TextBox>
|
||
|
</Items>
|
||
|
</f:FormRow>
|
||
|
|
||
|
</Rows>
|
||
|
<Toolbars>
|
||
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
||
|
<Items>
|
||
|
|
||
|
<f:Button ID="btnAttachUrl" Text="项目图片" ToolTip="项目图片查看及上传" Icon="TableCell" runat="server"
|
||
|
OnClick="btnAttachUrl_Click" ValidateForms="SimpleForm1">
|
||
|
</f:Button>
|
||
|
<f:Label runat="server" Text="请上传分辨率为600 * 130 且不大于300KB图片" CssClass="LabelColor"></f:Label>
|
||
|
<f:ToolbarFill runat="server"></f:ToolbarFill>
|
||
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1"
|
||
|
OnClick="btnSave_Click">
|
||
|
</f:Button>
|
||
|
|
||
|
</Items>
|
||
|
</f:Toolbar>
|
||
|
</Toolbars>
|
||
|
</f:Form>
|
||
|
<f:Window ID="WindowAtt" Title="附件上传查看" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||
|
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px" OnClose="WindowAtt_Close"
|
||
|
Height="500px">
|
||
|
</f:Window>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|