75 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ 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>
 | |
|                     <Items>
 | |
|                         <f:DropDownList runat="server" Required="true" ShowRedStar="true" ID="drpInstallation" Label="装置/单元设置" LabelWidth="150px" ></f:DropDownList>
 | |
|                    </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>
 | |
|                     <Items>
 | |
|                         <f:NumberBox runat="server" ID="txtCosts" Label="建安工程费(万元)" Hidden="true" LabelWidth="150px" NoDecimal="false" NoNegative="true"></f:NumberBox>
 | |
|                    </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList runat="server" ID="drpUnit" Label="施工单位" LabelWidth="150px" ShowRedStar="true" Hidden="true"></f:DropDownList>
 | |
|                    </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList runat="server" ID="drpSupervisorUnit" Label="监理单位" LabelWidth="150px" Hidden="true"></f:DropDownList>
 | |
|                    </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList runat="server" ID="drpNDEUnit" Label="检测单位" LabelWidth="150px" Hidden="true"></f:DropDownList>
 | |
|                    </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" AjaxLoadingType="Mask" ShowAjaxLoadingMaskText="true" AjaxLoadingMaskText="正在拷贝分部、分项工程数据,请稍候">
 | |
|                         </f:Button>
 | |
|                         <f:Button ID="btnClose" EnablePostBack="false"
 | |
|                             runat="server" Icon="SystemClose">
 | |
|                         </f:Button>
 | |
|                     </Items>
 | |
|                 </f:Toolbar>
 | |
|             </Toolbars>
 | |
|         </f:Form>
 | |
|     </form>
 | |
| </body>
 | |
| </html>
 |