80 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			80 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ConstructionRiskControlCheck.aspx.cs" | |||
|  |     Inherits="FineUIPro.Web.HSSE.Hazard.ConstructionRiskControlCheck" ValidateRequest="false" %> | |||
|  | 
 | |||
|  | <%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" | |||
|  |     TagPrefix="uc1" %> | |||
|  | <!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" /> | |||
|  |     <style type="text/css">         | |||
|  |         .lab | |||
|  |         { | |||
|  |             font-size: small; | |||
|  |             color: Red; | |||
|  |         } | |||
|  |     </style> | |||
|  | </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" | |||
|  |         Layout="VBox" BodyPadding="10px" runat="server" RedStarPosition="BeforeText" | |||
|  |         LabelAlign="Right"> | |||
|  |         <Rows> | |||
|  |            <f:FormRow> | |||
|  |                 <Items>   | |||
|  |                    <f:DatePicker ID="txtCheckDate" ShowRedStar="true" runat="server" Label="巡检日期" Required="true" LabelAlign="Right" | |||
|  |                                                 EnableEdit="false"> | |||
|  |                                             </f:DatePicker> | |||
|  |                  </Items> | |||
|  |             </f:FormRow> | |||
|  |              <f:FormRow> | |||
|  |                 <Items>   | |||
|  |                   <f:RadioButtonList ID="rbCheckResult" Label="检查结果" runat="server" ColumnNumber="1" ShowRedStar="true" Required="true" AutoPostBack="true" OnSelectedIndexChanged="rbCheckResult_SelectedIndexChanged">  | |||
|  |                     <f:RadioItem Text="符合" Value="符合" /> | |||
|  |                     <f:RadioItem Text="不符合" Value="不符合" /> | |||
|  |                    </f:RadioButtonList> | |||
|  |                      | |||
|  |                  </Items> | |||
|  |             </f:FormRow> | |||
|  |             <f:FormRow> | |||
|  |                 <Items>   | |||
|  |                    | |||
|  |                      <f:RadioButtonList ID="rbRectification" Label="整改情况" runat="server" ColumnNumber="1" Hidden="true"> | |||
|  |                     <f:RadioItem Text="A(隐患整改单)" Value="A" /> | |||
|  |                     <f:RadioItem Text="B(安全巡检记录)" Value="B" /> | |||
|  |                     <f:RadioItem Text="C(口头通知,现场已整改)" Value="C" /> | |||
|  |                   </f:RadioButtonList> | |||
|  |                  </Items> | |||
|  |             </f:FormRow> | |||
|  |                 | |||
|  |         </Rows> | |||
|  |         <Toolbars> | |||
|  |             <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server"> | |||
|  |                 <Items> | |||
|  |                     <f:Label runat="server" ID="lbTemp"> | |||
|  |                     </f:Label> | |||
|  |                     | |||
|  |                     <f:ToolbarFill ID="ToolbarFill1" runat="server"> | |||
|  |                     </f:ToolbarFill> | |||
|  |                     <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ValidateForms="SimpleForm1" | |||
|  |                         OnClick="btnSave_Click"> | |||
|  |                     </f:Button> | |||
|  |                       | |||
|  |                 </Items> | |||
|  |             </f:Toolbar> | |||
|  |         </Toolbars> | |||
|  |     </f:Form> | |||
|  |       | |||
|  |      | |||
|  |      | |||
|  |     </form> | |||
|  |     <script type="text/javascript"> | |||
|  |          | |||
|  |          | |||
|  |     </script> | |||
|  | </body> | |||
|  | </html> |