SGGL_SHJ/SGGL/FineUIPro.Web/Person/PersonContractEdit.aspx

77 lines
3.7 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonContractEdit.aspx.cs"
Inherits="FineUIPro.Web.Person.PersonContractEdit" ValidateRequest="false" %>
<!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>
<link href="~/res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" AutoSizePanelID="SimpleForm1" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" Title="合同信息" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right" LabelWidth="150px">
<Rows>
<f:FormRow>
<Items>
<f:TextBox ID="txtPersonName" runat="server" Label="乙方(劳动者姓名)" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtIdentityCard" runat="server" Label="身份证" Readonly="true">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpProject" runat="server" Label="项目" EnableEdit="true">
</f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpUnit" runat="server" Label="甲方(单位名称)" EnableEdit="true"
AutoPostBack="true" OnSelectedIndexChanged="drpUnit_SelectedIndexChanged">
</f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpLeadMan" runat="server" Label="负责人姓名" EnableEdit="true"
AutoPostBack="true" OnSelectedIndexChanged="drpLeadMan_SelectedIndexChanged">
</f:DropDownList>
<f:TextBox ID="txtTelephone" runat="server" Label="联系电话" MaxLength="500">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpContractType" runat="server" Label="合同有效期" EnableEdit="true"
AutoPostBack="true" OnSelectedIndexChanged="drpContractType_SelectedIndexChanged">
</f:DropDownList>
<f:DatePicker ID="txtStartDate" Label="开始日期" runat="server">
</f:DatePicker>
<f:DatePicker ID="txtEndDate" Label="结束日期" runat="server">
</f:DatePicker>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<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>