75 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			75 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BaseView.aspx.cs" Inherits="FineUIPro.Web.CQMS.QuantityManagement.BaseView" %> | ||
|  | 
 | ||
|  | <!DOCTYPE html> | ||
|  | 
 | ||
|  | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
|  | <head runat="server"> | ||
|  |     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
|  |     <title>编辑工程量基础表</title> | ||
|  | </head> | ||
|  | <body> | ||
|  |     <form id="form1" runat="server"> | ||
|  |         <f:PageManager ID="PageManager1" runat="server" AutoSizePanelID="SimpleForm1" /> | ||
|  |         <f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true" BodyPadding="10px" runat="server" RedStarPosition="BeforeText"> | ||
|  |             <Rows> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:DropDownList ID="drpDrawingNo" OnSelectedIndexChanged="drpDrawingNo_SelectedIndexChanged" AutoPostBack="true" Readonly="true" ShowRedStar="true" runat="server" LabelWidth="120px" Required="true" Label="图号" LabelAlign="Right" EnableEdit="true"> | ||
|  |                                             </f:DropDownList> | ||
|  |                         <f:TextBox ID="txtWorkSection" runat="server" Readonly="true" Label="工段" MaxLength="100" LabelAlign="Right" LabelWidth="120px"></f:TextBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:TextBox ID="txtDrawingName" runat="server" Label="图纸名称" Readonly="true" MaxLength="100" LabelAlign="Right" LabelWidth="120px"></f:TextBox> | ||
|  |                         <f:TextBox ID="txtPart" runat="server" Label="部位" Required="true" ShowRedStar="true" Readonly="true" MaxLength="100" LabelAlign="Right" LabelWidth="120px"></f:TextBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:TextBox ID="txtProjectContent" runat="server" Label="项目内容" Required="true" Readonly="true" ShowRedStar="true" MaxLength="100" LabelAlign="Right" LabelWidth="120px"></f:TextBox> | ||
|  |                         <f:TextBox ID="txtUnit" runat="server" Label="单位" Required="true" ShowRedStar="true" Readonly="true" MaxLength="50" LabelAlign="Right" LabelWidth="120px"></f:TextBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:NumberBox runat="server" ID="txtAmount" Label="总数" NoDecimal="false" Required="true" Readonly="true" ShowRedStar="true" LabelAlign="Right" LabelWidth="120px"></f:NumberBox> | ||
|  |                     <f:DropDownList ID="drpWorkTeam" ShowRedStar="true" runat="server" LabelWidth="120px" Required="true" Readonly="true" Label="计划作业队" LabelAlign="Right" EnableEdit="true"> | ||
|  |                                             </f:DropDownList> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow ID="plApprove2"> | ||
|  |                     <Items> | ||
|  |                          | ||
|  |                         <f:ContentPanel Title="工程量基础表审批列表" ShowBorder="true" | ||
|  |                             BodyPadding="10px" EnableCollapse="true" ShowHeader="true" AutoScroll="true" | ||
|  |                             runat="server"> | ||
|  |                             <f:Grid ID="gvApprove" IsFluid="true" CssClass="blockpanel" ShowBorder="true" ShowHeader="false" runat="server" EnableCollapse="false" | ||
|  |                                 DataKeyNames="BaseApproveId" EnableColumnLines="true" ForceFit="true"> | ||
|  |                                 <Columns> | ||
|  |                                     <f:RowNumberField Width="20px" /> | ||
|  |                                     <f:TemplateField ColumnID="State" Width="250px" HeaderText="办理类型" HeaderTextAlign="Center" TextAlign="Center" | ||
|  |                                         EnableLock="true" Locked="False"> | ||
|  |                                         <ItemTemplate> | ||
|  |                                             <asp:Label ID="lbtype" runat="server" Text='<%# ConvertState(Eval("ApproveType")) %>'></asp:Label> | ||
|  |                                         </ItemTemplate> | ||
|  |                                     </f:TemplateField> | ||
|  |                                     <f:BoundField Width="180px" DataField="ApproveMan" HeaderTextAlign="Center" HeaderText="办理人员" TextAlign="Center" /> | ||
|  |                                     <f:BoundField Width="200px" DataField="ApproveDate" HeaderTextAlign="Center" TextAlign="Center" DataFormatString="{0:yyyy-MM-dd}" HeaderText="办理时间" /> | ||
|  |                                     <f:BoundField Width="180px" DataField="ApproveIdea" HeaderTextAlign="Center" TextAlign="Center" HeaderText="办理意见" /> | ||
|  | 
 | ||
|  |                                 </Columns> | ||
|  |                             </f:Grid> | ||
|  |                         </f:ContentPanel> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |             </Rows> | ||
|  |         </f:Form> | ||
|  |         <f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true" | ||
|  |             Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px" | ||
|  |             Height="500px"> | ||
|  |         </f:Window> | ||
|  |     </form> | ||
|  | </body> | ||
|  | </html> |