172 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonManageEdit.aspx.cs" Inherits="FineUIPro.Web.HJGL.PersonManage.PersonManageEdit" %>
 | 
						|
 | 
						|
<!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>
 | 
						|
      <style type="text/css">
 | 
						|
        .userphoto .f-field-label {
 | 
						|
            margin-top: 0;
 | 
						|
        }
 | 
						|
 | 
						|
        .userphoto img {
 | 
						|
            margin-left:100px;
 | 
						|
            width: 150px;
 | 
						|
        }
 | 
						|
 | 
						|
        .uploadbutton .f-btn {
 | 
						|
            width: 100px;  margin-left:10px;
 | 
						|
        }
 | 
						|
    </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"
 | 
						|
            BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
 | 
						|
            <Rows>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:DropDownList ID="drpUnitId" runat="server" Label="单位" LabelAlign="Right" Required="true" ShowRedStar="true" AutoPostBack="true" OnSelectedIndexChanged="drpUnitId_SelectedIndexChanged" LabelWidth="120px"></f:DropDownList>
 | 
						|
                        <f:DropDownList ID="drpTeamGroupId" runat="server" Label="班组" LabelAlign="Right"></f:DropDownList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:TextBox ID="txtWED_Name" runat="server" Label="焊工姓名"
 | 
						|
                            Required="true" MaxLength="20" ShowRedStar="true" LabelAlign="Right" LabelWidth="120px">
 | 
						|
                        </f:TextBox>
 | 
						|
                        <f:TextBox ID="txtWED_Code" runat="server" Label="焊工代号"
 | 
						|
                            Required="true" MaxLength="50" ShowRedStar="true" LabelAlign="Right">
 | 
						|
                        </f:TextBox>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:DatePicker ID="txtBirthday" runat="server" Label="出生日期" LabelAlign="Right" LabelWidth="120px"></f:DatePicker>
 | 
						|
                        <f:RadioButtonList ID="rblSex" runat="server" Label="性别" LabelAlign="Right">
 | 
						|
                            <f:RadioItem Value="1" Text="男" Selected="true" />
 | 
						|
                            <f:RadioItem Value="2" Text="女" />
 | 
						|
                        </f:RadioButtonList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:TextBox ID="txtWorkCode" runat="server" Label="上岗证号"
 | 
						|
                            MaxLength="20" LabelAlign="Right" LabelWidth="120px">
 | 
						|
                        </f:TextBox>
 | 
						|
                        <f:DatePicker ID="txtLimitDate" runat="server" Label="有效期限" LabelAlign="Right"></f:DatePicker>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:TextBox ID="txtClass" runat="server" Label="焊工等级"
 | 
						|
                            MaxLength="200" LabelAlign="Right" LabelWidth="120px">
 | 
						|
                        </f:TextBox>
 | 
						|
                        <f:CheckBox ID="cbIfOnGuard" runat="server" Label="是否在岗" LabelAlign="Right"></f:CheckBox>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:TextBox ID="txtIdentityCard" runat="server" Label="身份证号" LabelAlign="Right" LabelWidth="120px"></f:TextBox>
 | 
						|
                       <f:RadioButtonList ID="rbtype" runat="server" Label="焊工类型" LabelAlign="Right">
 | 
						|
                            <f:RadioItem Value="管道" Text="管道" Selected="true" />
 | 
						|
                            <f:RadioItem Value="设备" Text="设备" />
 | 
						|
                        </f:RadioButtonList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                 <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
 | 
						|
                        <f:DropDownBox ID="dpWeldMethod"  runat="server"  Label="焊接方法" LabelWidth="120px" DataControlID="cbWeldMethod" EnableMultiSelect="true" > 
 | 
						|
                            <PopPanel>
 | 
						|
                                <f:SimpleForm ID="SimpleForm4" BodyPadding="10px" runat="server" AutoScroll="true"
 | 
						|
                                ShowBorder="true" ShowHeader="false" Hidden="true">
 | 
						|
                                    <Items>
 | 
						|
                                        <f:CheckBoxList ID="cbWeldMethod" ColumnNumber="3" runat="server" >
 | 
						|
                                        </f:CheckBoxList>
 | 
						|
                                    </Items>
 | 
						|
                                </f:SimpleForm>
 | 
						|
                            </PopPanel>
 | 
						|
                         </f:DropDownBox>
 | 
						|
                        <f:DropDownList ID="dpJOTSch" runat="server" Label="壁厚" LabelAlign="Right">
 | 
						|
                            <f:ListItem  Value="" Text="不限"/>
 | 
						|
                            <f:ListItem  Value="1" Text="<12"/>
 | 
						|
                            <f:ListItem  Value="2" Text=">=12"/>
 | 
						|
                        </f:DropDownList>                        
 | 
						|
                                          
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
 | 
						|
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                          <f:DropDownBox ID="drpSteType"  runat="server" Label="母材类别" DataControlID="cbSteType" EnableMultiSelect="true"  > 
 | 
						|
                            <PopPanel>
 | 
						|
                                <f:SimpleForm ID="SimpleForm3" BodyPadding="10px" runat="server" AutoScroll="true"
 | 
						|
                                ShowBorder="true" ShowHeader="false" Hidden="true">
 | 
						|
                                    <Items>
 | 
						|
                                        <f:CheckBoxList ID="cbSteType" ColumnNumber="3" runat="server" >
 | 
						|
                                        </f:CheckBoxList>
 | 
						|
                                    </Items>
 | 
						|
                                </f:SimpleForm>
 | 
						|
                            </PopPanel>
 | 
						|
                        </f:DropDownBox>   
 | 
						|
                        <f:TextBox ID="txtRemak" runat="server" Label="备注" MaxLength="50" LabelAlign="Right"></f:TextBox>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:TextArea ID="txtSE_EquipmentID" runat="server" Label="合格项目代号" LabelWidth="120px" LabelAlign="Right" MaxLength="1000">
 | 
						|
                        </f:TextArea>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                 
 | 
						|
                <f:FormRow> 
 | 
						|
                     <Items> 
 | 
						|
                         <f:Panel ID="Panel1" ShowHeader="false" ShowBorder="false" Layout="Column" runat="server"    >
 | 
						|
                            <Items>
 | 
						|
                                <f:Image ID="imgPhoto" Width="100px" CssClass="userphoto" ImageUrl="~/res/images/blank_150.png"
 | 
						|
                                    runat="server" BoxFlex="1">
 | 
						|
                                </f:Image> 
 | 
						|
                                
 | 
						|
                            </Items>  
 | 
						|
                         </f:Panel>
 | 
						|
                         </Items> 
 | 
						|
                </f:FormRow> 
 | 
						|
               
 | 
						|
            </Rows>
 | 
						|
            <Toolbars>
 | 
						|
                <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | 
						|
                    <Items>
 | 
						|
                        <f:HiddenField ID="hdWelderId" runat="server"></f:HiddenField>
 | 
						|
                        <f:Button ID="btnAttachUrl" Text="焊工资质证书" ToolTip="焊工资质证书"   runat="server" OnClick="btnAttachUrl_Click"
 | 
						|
                            ValidateForms="SimpleForm1">
 | 
						|
                        </f:Button>
 | 
						|
                          <f:FileUpload ID="filePhoto" CssClass="uploadbutton" runat="server" ButtonText="上传头像"   
 | 
						|
                                              OnFileSelected="filePhoto_FileSelected"      Width="100px"    ButtonOnly="true" AutoPostBack="true" >
 | 
						|
                                 </f:FileUpload>
 | 
						|
                        <f:ToolbarFill ID="ToolbarFill1" runat="server"></f:ToolbarFill>
 | 
						|
                        <f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1"
 | 
						|
                            OnClick="btnSave_Click" Text="保存" ToolTip="保存">
 | 
						|
                        </f:Button>
 | 
						|
                        <f:Button ID="btnClose" EnablePostBack="false" Text="关闭" ToolTip="关闭"
 | 
						|
                            runat="server" Icon="SystemClose">
 | 
						|
                        </f:Button>
 | 
						|
                    </Items>
 | 
						|
                </f:Toolbar>
 | 
						|
            </Toolbars>
 | 
						|
        </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>
 |