员工信息补充维护邮箱
This commit is contained in:
parent
9f24bc296b
commit
fac9a2c92e
|
@ -100,6 +100,12 @@
|
||||||
</Items>
|
</Items>
|
||||||
</f:FormRow>
|
</f:FormRow>
|
||||||
|
|
||||||
|
<f:FormRow>
|
||||||
|
<Items>
|
||||||
|
<f:TextBox ID="txtEmail" runat="server" Label="邮箱" RegexPattern="EMAIL" LabelAlign="Right" MaxLength="50">
|
||||||
|
</f:TextBox>
|
||||||
|
</Items>
|
||||||
|
</f:FormRow>
|
||||||
<f:FormRow>
|
<f:FormRow>
|
||||||
<Items>
|
<Items>
|
||||||
<f:DatePicker runat="server" Label="进入项目时间" ID="txtIntoProjectDate" LabelWidth="110px" Readonly="true"></f:DatePicker>
|
<f:DatePicker runat="server" Label="进入项目时间" ID="txtIntoProjectDate" LabelWidth="110px" Readonly="true"></f:DatePicker>
|
||||||
|
|
|
@ -105,6 +105,7 @@ namespace FineUIPro.Web.Person
|
||||||
this.drpIsPost.SelectedValue = Convert.ToString(user.IsPost);
|
this.drpIsPost.SelectedValue = Convert.ToString(user.IsPost);
|
||||||
}
|
}
|
||||||
this.txtTelephone.Text = user.Telephone;
|
this.txtTelephone.Text = user.Telephone;
|
||||||
|
this.txtEmail.Text = user.Email;
|
||||||
if (user.IsOffice == true)
|
if (user.IsOffice == true)
|
||||||
{
|
{
|
||||||
this.drpIsOffice.SelectedValue = "True";
|
this.drpIsOffice.SelectedValue = "True";
|
||||||
|
@ -196,6 +197,7 @@ namespace FineUIPro.Web.Person
|
||||||
Account = this.txtAccount.Text.Trim(),
|
Account = this.txtAccount.Text.Trim(),
|
||||||
IdentityCard = this.txtIdentityCard.Text.Trim(),
|
IdentityCard = this.txtIdentityCard.Text.Trim(),
|
||||||
Telephone = this.txtTelephone.Text.Trim(),
|
Telephone = this.txtTelephone.Text.Trim(),
|
||||||
|
Email = this.txtEmail.Text.Trim(),
|
||||||
Politicalstatus = this.txtPoliticalstatus.Text.Trim(),
|
Politicalstatus = this.txtPoliticalstatus.Text.Trim(),
|
||||||
Hometown = this.txtHometown.Text.Trim(),
|
Hometown = this.txtHometown.Text.Trim(),
|
||||||
Education = this.txtEducation.Text.Trim(),
|
Education = this.txtEducation.Text.Trim(),
|
||||||
|
|
|
@ -7,10 +7,12 @@
|
||||||
// </自动生成>
|
// </自动生成>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace FineUIPro.Web.Person {
|
namespace FineUIPro.Web.Person
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
public partial class PersonSetEdit {
|
public partial class PersonSetEdit
|
||||||
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// form1 控件。
|
/// form1 控件。
|
||||||
|
@ -255,6 +257,15 @@ namespace FineUIPro.Web.Person {
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.TextBox txtProjectRoleId;
|
protected global::FineUIPro.TextBox txtProjectRoleId;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// txtEmail 控件。
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// 自动生成的字段。
|
||||||
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
|
/// </remarks>
|
||||||
|
protected global::FineUIPro.TextBox txtEmail;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtIntoProjectDate 控件。
|
/// txtIntoProjectDate 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue