SGGL_SHJ/SGGL/FineUIPro.Web/ProjectData/UnitWorkEdit.aspx

99 lines
5.0 KiB
Plaintext
Raw Normal View History

2022-09-05 16:36:31 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UnitWorkEdit.aspx.cs" Inherits="FineUIPro.Web.ProjectData.UnitWorkEdit" %>
<!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" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow runat="server">
<Items>
<f:TextBox ID="txtUnitWorkCode" runat="server" Label="编号"
Required="true" MaxLength="70" ShowRedStar="true" LabelWidth="150px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow runat="server">
<Items>
<f:TextBox ID="txtUnitWorkName" runat="server" Label="名称"
Required="true" MaxLength="70" ShowRedStar="true" LabelWidth="150px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow runat="server">
<Items>
<f:DropDownList ID="drpProjectType" runat="server" EmptyText="--请选择--" Required="true" AutoSelectFirstItem="false" Label="所属工程" LabelWidth="150px" ShowRedStar="true" LabelAlign="Right" EnableEdit="true">
<f:ListItem Text="建筑工程" Value="1" />
<f:ListItem Text="安装工程" Value="2" />
</f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:NumberBox runat="server" ID="txtCosts" Label="建安工程费(万元)" LabelWidth="150px" NoDecimal="false" NoNegative="true"></f:NumberBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
2023-10-25 23:30:52 +08:00
<f:DropDownList runat="server" ID="drpUnit" Label="施工单位" LabelWidth="150px" ShowRedStar="true" EnableMultiSelect="true" EnableCheckBoxSelect="true" ></f:DropDownList>
2022-09-05 16:36:31 +08:00
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpSupervisorUnit" Label="监理单位" LabelWidth="150px"></f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpNDEUnit" Label="检测单位" LabelWidth="150px"></f:DropDownList>
</Items>
</f:FormRow>
2023-09-22 14:09:58 +08:00
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpContract" Label="对应合同编号" LabelWidth="150px"></f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow runat="server">
<Items>
<f:TextBox ID="txtMainItemCode" runat="server" Label="对应合同主项编号"
MaxLength="50" LabelWidth="150px">
</f:TextBox>
</Items>
</f:FormRow>
2022-09-05 16:36:31 +08:00
<f:FormRow ColumnWidths="95% 4% 1%">
<Items>
<f:Label runat="server" ID="txtMainItemAndDesignProfessional" Label="对应主项及设计专业" LabelWidth="150px"></f:Label>
<f:Button runat="server" ID="btnSelect" OnClick="btnSelect_Click" Text="选择"></f:Button>
<f:HiddenField runat="server" ID="hdMainItemAndDesignProfessionalIds"></f:HiddenField>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:HiddenField ID="hdCheckerId" runat="server">
</f:HiddenField>
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1"
OnClick="btnSave_Click" Text="保存">
</f:Button>
<f:Button ID="btnClose" EnablePostBack="false" runat="server" Icon="SystemClose" Text="关闭">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
<f:Window ID="Window1" Title="选择主项及设计专业" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="600px" Height="560px">
</f:Window>
</form>
</body>
</html>