20240410 开车会议管理

This commit is contained in:
2024-04-10 14:37:59 +08:00
parent 00a325ba3a
commit 9bb7f02b83
135 changed files with 5027 additions and 552 deletions
@@ -9,7 +9,7 @@ namespace FineUIPro.Web.TestRun.Meeting
if (!IsPostBack)
{
this.txtFeedbak.Hidden = true;
BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
//BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
string id = Request.Params["id"];
if (!string.IsNullOrEmpty(id))
{
@@ -17,15 +17,14 @@ namespace FineUIPro.Web.TestRun.Meeting
if (data != null)
{
this.hdId.Text = id;
//this.txtMeetingCode.Text = data.MeetingCode;
//this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
this.txtMeetingName.Text = data.MeetingName;
this.txtStartTime.Text = data.StartTime.HasValue ? string.Format("{0:yyyy-MM-dd hh:mm:ss}", data.StartTime) : "";
this.txtEndTime.Text = data.EndTime.HasValue ? string.Format("{0:yyyy-MM-dd hh:mm:ss}", data.EndTime) : "";
this.txtMeetingAddress.Text = data.MeetingAddress;
//this.txtMeetingUrl.Text = data.AttachUrl;
//if (!string.IsNullOrEmpty(data.CompileMan))
//{
// this.drpCompileMan.SelectedValue = data.CompileMan;
//}
//this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
this.txtMeetingUrl.Text = data.MeetingUrl;
this.txtInitiationDate.Text = data.InitiationDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.InitiationDate) : "";
this.txtMeetingContent.Text = data.MeetingContent;
this.rblMeetingType.SelectedValue = data.MeetingType;
}
}
}