57 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			57 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OutputValueProject.aspx.cs" Inherits="FineUIPro.Web.SysManage.OutputValueProject" %> | ||
|  | 
 | ||
|  | 
 | ||
|  | <!DOCTYPE html> | ||
|  | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
|  | <head id="Head1" 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="20px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right"> | ||
|  |             <Rows> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:DropDownList runat="server" ID="drpYear" Label="年度" LabelWidth="70px" Readonly="true"> | ||
|  |                         </f:DropDownList> | ||
|  |                         <f:DropDownList runat="server" ID="drpMonth" Label="月份" LabelWidth="70px" Readonly="true"> | ||
|  |                         </f:DropDownList> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:DropDownList ID="drpProject" runat="server" Label="项目" LabelWidth="70px" | ||
|  |                             Required="true" ShowRedStar="true" FocusOnPageLoad="true" EnableEdit="true"> | ||
|  |                         </f:DropDownList> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:NumberBox ID="txtPlanOutPutValue" Label="施工计划产值(万元)" runat="server" LabelWidth="180px"  | ||
|  |                             NoNegative="true" DecimalPrecision="2" Required="true" ShowRedStar="true"> | ||
|  |                         </f:NumberBox> | ||
|  |                         <f:NumberBox ID="txtActualOutPutValue" Label="施工实际产值(万元)" runat="server" LabelWidth="180px"  | ||
|  |                             NoNegative="true" DecimalPrecision="2" Required="true" ShowRedStar="true"> | ||
|  |                         </f:NumberBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |             </Rows> | ||
|  |             <Toolbars> | ||
|  |                 <f:Toolbar ID="Toolbar1" Position="Top" ToolbarAlign="Right" runat="server"> | ||
|  |                     <Items> | ||
|  |                         <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> |