49 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProgressCompletionView.aspx.cs" Inherits="FineUIPro.Web.JDGL.Check.ProgressCompletionView" %>
 | ||
| 
 | ||
| <!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:DatePicker ID="txtMonths" runat="server" Label="月份" LabelAlign="Right" LabelWidth="150px"
 | ||
|                            DateFormatString="yyyy-MM"  EnableEdit="true" Readonly="true">
 | ||
|                         </f:DatePicker>
 | ||
|                     </Items>
 | ||
|                 </f:FormRow>
 | ||
|                 <f:FormRow>
 | ||
|                     <Items>
 | ||
|                         <f:NumberBox runat="server" ID="txtPlanNum" Readonly="true" Label="当月计划(%)" LabelWidth="150px" NoDecimal="false" NoNegative="true"></f:NumberBox>
 | ||
|                     </Items>
 | ||
|                 </f:FormRow>
 | ||
|                 <f:FormRow>
 | ||
|                     <Items>
 | ||
|                         <f:NumberBox runat="server" ID="txtRealNum" Readonly="true" Label="当月完成(%)" LabelWidth="150px" NoDecimal="false" NoNegative="true"></f:NumberBox>
 | ||
|                     </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="btnClose" EnablePostBack="false"
 | ||
|                             runat="server" Icon="SystemClose">
 | ||
|                         </f:Button>
 | ||
|                     </Items>
 | ||
|                 </f:Toolbar>
 | ||
|             </Toolbars>
 | ||
|         </f:Form>
 | ||
|     </form>
 | ||
| </body>
 | ||
| </html>
 |