diff --git a/DataBase/版本日志/HJGLDB_DS_2026-02-11_bwj.sql b/DataBase/版本日志/HJGLDB_DS_2026-02-11_bwj.sql
new file mode 100644
index 0000000..4a339bc
--- /dev/null
+++ b/DataBase/版本日志/HJGLDB_DS_2026-02-11_bwj.sql
@@ -0,0 +1,4 @@
+alter table JGZL_Contact add ContactSortName nvarchar(50)
+alter table JGZL_Contact add ContactSort int
+go
+
diff --git a/HJGL_DS/BLL/JGZL/ConDrawingVerificationService.cs b/HJGL_DS/BLL/JGZL/ConDrawingVerificationService.cs
index a3ccbac..a740d00 100644
--- a/HJGL_DS/BLL/JGZL/ConDrawingVerificationService.cs
+++ b/HJGL_DS/BLL/JGZL/ConDrawingVerificationService.cs
@@ -21,6 +21,16 @@ namespace BLL
return Funs.DB.JGZL_ConDrawingVerification.FirstOrDefault(e => e.ConDrawingVerificationId == conDrawingVerificationId);
}
+ ///
+ /// 根据项目Id获取施工图核查记录
+ ///
+ ///
+ ///
+ public static Model.JGZL_ConDrawingVerification GetConDrawingVerificationByProjectId(string projectId)
+ {
+ return Funs.DB.JGZL_ConDrawingVerification.FirstOrDefault(e => e.ProjectId == projectId);
+ }
+
///
/// 添加
///
diff --git a/HJGL_DS/BLL/JGZL/ContactService.cs b/HJGL_DS/BLL/JGZL/ContactService.cs
index ab051f7..abf00fb 100644
--- a/HJGL_DS/BLL/JGZL/ContactService.cs
+++ b/HJGL_DS/BLL/JGZL/ContactService.cs
@@ -22,6 +22,17 @@ namespace BLL
return Funs.DB.JGZL_Contact.FirstOrDefault(e => e.ContactId == contactId);
}
+ ///
+ /// 根据项目Id获取工程联络单
+ ///
+ ///
+ ///
+ ///
+ public static Model.JGZL_Contact GetContactByProjectId(string projectId,string contactSort)
+ {
+ return Funs.DB.JGZL_Contact.FirstOrDefault(e => e.ProjectId == projectId && e.ContactSort == Convert.ToInt32(contactSort));
+ }
+
///
/// 添加工程联络单
///
@@ -47,6 +58,8 @@ namespace BLL
newContact.OpinionsDate = contact.OpinionsDate;
newContact.CompileMan = contact.CompileMan;
newContact.CompileDate = contact.CompileDate;
+ newContact.ContactSort = contact.ContactSort;
+ newContact.ContactSortName = contact.ContactSortName;
db.JGZL_Contact.InsertOnSubmit(newContact);
db.SubmitChanges();
}
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx b/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx
index 7273ee4..0c2bd48 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx
+++ b/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx
@@ -4,7 +4,7 @@
-
+
施工图核查记录
@@ -39,98 +39,71 @@
-
+
+
+ <%----%>
-
-
-
-
-
-
-
- <%--
- --%>
-
-
-
-
-
-
- <%--
- --%>
-
-
- <%--
- --%>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ <%----%>
+
+
+
+
+ <%--
+
+
+
+--%>
+
+
+
+
+
+
+
+
+
+
+
+
+ <%----%>
+
+
+
+
+ <%--
+
+
+
+
+--%>
+
+
+
-
-
-
-
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.cs b/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.cs
index 332c838..504dd4b 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.cs
@@ -11,8 +11,25 @@ using System.IO;
namespace FineUIPro.Web.JGZL
{
- public partial class ConDrawingVerification :PageBase
+ public partial class ConDrawingVerification : PageBase
{
+ #region 定义项
+ ///
+ /// 主键
+ ///
+ private string ConDrawingVerificationId
+ {
+ get
+ {
+ return (string)ViewState["ConDrawingVerificationId"];
+ }
+ set
+ {
+ ViewState["ConDrawingVerificationId"] = value;
+ }
+ }
+ #endregion
+
#region 加载页面
///
/// 加载页面
@@ -23,8 +40,6 @@ namespace FineUIPro.Web.JGZL
{
if (!IsPostBack)
{
- this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
-
this.drpProjectId.DataTextField = "ProjectCode";
this.drpProjectId.DataValueField = "ProjectId";
this.drpProjectId.DataSource = BLL.Base_ProjectService.GetOnProjectListByUserId(this.CurrUser.UserId, "1");
@@ -34,9 +49,53 @@ namespace FineUIPro.Web.JGZL
this.drpProjectId.SelectedValue = this.CurrUser.LoginProjectId;
this.InitTreeMenu();//加载树
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
- this.BindGrid();
+ PageData();
}
}
+
+ private void PageData()
+ {
+ EmptyText();
+ string projectId = this.tvControlItem.SelectedNodeID;
+ if (!string.IsNullOrEmpty(projectId))
+ {
+ var report = BLL.ConDrawingVerificationService.GetConDrawingVerificationByProjectId(projectId);
+ if (report != null)
+ {
+ this.ConDrawingVerificationId = report.ConDrawingVerificationId;
+ this.txtDesignUnit.Text = report.DesignUnit;
+ this.txtProfessional.Text = report.Professional;
+ //this.txtHost.Text = report.Host;
+ this.txtVerificationDate.Text = report.VerificationDate.HasValue ? string.Format("{0:yyyy-MM-dd}", report.VerificationDate) : "";
+ this.txtConDrawingCode.Text = report.ConDrawingCode;
+ //this.txtPersonnel.Text = report.Personnel;
+ this.txtContents.Text = report.Contents;
+ this.txtProblems.Text = report.Problems;
+ //this.txtRecorder.Text = report.Recorder;
+ this.txtRecordDate.Text = report.RecordDate.HasValue ? string.Format("{0:yyyy-MM-dd}", report.RecordDate) : "";
+ //this.txtReviewer.Text = report.Reviewer;
+ this.txtReviewDate.Text = report.ReviewDate.HasValue ? string.Format("{0:yyyy-MM-dd}", report.ReviewDate) : "";
+ }
+ else
+ {
+ this.ConDrawingVerificationId = string.Empty;
+ this.txtVerificationDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ this.txtConDrawingCode.Text = BLL.Base_ProjectService.GetProjectCode(projectId);
+ }
+ }
+ }
+
+ private void EmptyText()
+ {
+ txtDesignUnit.Text = string.Empty;
+ txtProfessional.Text = string.Empty;
+ txtVerificationDate.Text = string.Empty;
+ txtConDrawingCode.Text = string.Empty;
+ txtContents.Text = string.Empty;
+ txtProblems.Text = string.Empty;
+ txtRecordDate.Text = string.Empty;
+ txtReviewDate.Text = string.Empty;
+ }
#endregion
#region 加载树项目
@@ -82,80 +141,11 @@ namespace FineUIPro.Web.JGZL
{
if (this.tvControlItem.SelectedNodeID != "0")
{
- this.BindGrid();
+ PageData();
}
}
#endregion
- #region 数据绑定
- ///
- /// 数据绑定
- ///
- private void BindGrid()
- {
- //string projectIds = BLL.Base_ProjectService.GetStrOnProjectIds(this.CurrUser.UserId, "1");
- string strSql = @"SELECT * from JGZL_ConDrawingVerification where 1=1";
- List listStr = new List();
- if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
- {
- strSql += " AND ProjectId = @ProjectId";
- listStr.Add(new SqlParameter("@ProjectId", this.tvControlItem.SelectedNodeID));
- }
- //else
- //{
- // strSql += " AND CHARINDEX(ProjectId,@ProjectId)>0 ";
- // listStr.Add(new SqlParameter("@ProjectId", projectIds));
- //}
- SqlParameter[] parameter = listStr.ToArray();
- DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
- // 2.获取当前分页数据
- Grid1.RecordCount = tb.Rows.Count;
- //tb = GetFilteredTable(Grid1.FilteredData, tb);
- var table = this.GetPagedDataTable(Grid1, tb);
- Grid1.DataSource = table;
- Grid1.DataBind();
- }
- #endregion
-
- #region 分页排序
- #region 页索引改变事件
- ///
- /// 页索引改变事件
- ///
- ///
- ///
- protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
- {
- BindGrid();
- }
- #endregion
-
- #region 排序
- ///
- /// 排序
- ///
- ///
- ///
- protected void Grid1_Sort(object sender, GridSortEventArgs e)
- {
- BindGrid();
- }
- #endregion
-
- #region 分页选择下拉改变事件
- ///
- /// 分页选择下拉改变事件
- ///
- ///
- ///
- protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
- {
- Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
- BindGrid();
- }
- #endregion
- #endregion
-
#region 查询
///
///查询
@@ -166,17 +156,7 @@ namespace FineUIPro.Web.JGZL
{
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
this.InitTreeMenu();
- BindGrid();
- }
-
- ///
- /// 查询
- ///
- ///
- ///
- protected void TextBox_TextChanged(object sender, EventArgs e)
- {
- this.BindGrid();
+ PageData();
}
#endregion
@@ -189,35 +169,32 @@ namespace FineUIPro.Web.JGZL
protected void btnPrint_Click(object sender, EventArgs e)
{
string projectId = this.tvControlItem.SelectedNodeID;
-
if (projectId != null)
{
- if (!string.IsNullOrEmpty(this.Grid1.SelectedRowID))
+ string initTemplatePath = "";
+ string rootPath = Server.MapPath("~/");
+ BLL.Common.FastReportService.ResetData();
+
+ var report = BLL.ConDrawingVerificationService.GetConDrawingVerificationByProjectId(projectId);
+ if (report != null)
{
- string initTemplatePath = "";
- string rootPath = Server.MapPath("~/");
- BLL.Common.FastReportService.ResetData();
+ Dictionary keyValuePairs = new Dictionary();
+ keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectByProjectId(projectId).ProjectName);
+ keyValuePairs.Add("DesignUnit", report.DesignUnit);
+ keyValuePairs.Add("Professional", report.Professional);
+ keyValuePairs.Add("Host", report.Host);
+ keyValuePairs.Add("VerificationDate", report.VerificationDate.HasValue ? string.Format("{0:yyyy年MM月dd日}", report.VerificationDate) : "");
+ keyValuePairs.Add("ConDrawingCode", report.ConDrawingCode);
+ keyValuePairs.Add("Personnel", report.Personnel);
+ keyValuePairs.Add("Contents", report.Contents);
+ keyValuePairs.Add("Problems", report.Problems);
+ keyValuePairs.Add("Recorder", report.Recorder);
+ keyValuePairs.Add("RecordDate", report.RecordDate.HasValue ? string.Format("{0:yyyy年MM月dd日}", report.RecordDate) : "");
+ keyValuePairs.Add("Reviewer", report.Reviewer);
+ keyValuePairs.Add("ReviewDate", report.ReviewDate.HasValue ? string.Format("{0:yyyy年MM月dd日}", report.ReviewDate) : "");
- var report = BLL.ConDrawingVerificationService.GetConDrawingVerificationById(this.Grid1.SelectedRowID);
- if (report != null)
- {
- Dictionary keyValuePairs = new Dictionary();
- keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectByProjectId(projectId).ProjectName);
- keyValuePairs.Add("DesignUnit", report.DesignUnit);
- keyValuePairs.Add("Professional", report.Professional);
- keyValuePairs.Add("Host", report.Host);
- keyValuePairs.Add("VerificationDate", report.VerificationDate.HasValue ? string.Format("{0:yyyy年MM月dd日}", report.VerificationDate) : "");
- keyValuePairs.Add("ConDrawingCode", report.ConDrawingCode);
- keyValuePairs.Add("Personnel", report.Personnel);
- keyValuePairs.Add("Contents", report.Contents);
- keyValuePairs.Add("Problems", report.Problems);
- keyValuePairs.Add("Recorder", report.Recorder);
- keyValuePairs.Add("RecordDate", report.RecordDate.HasValue ? string.Format("{0:yyyy年MM月dd日}", report.RecordDate) : "");
- keyValuePairs.Add("Reviewer", report.Reviewer);
- keyValuePairs.Add("ReviewDate", report.ReviewDate.HasValue ? string.Format("{0:yyyy年MM月dd日}", report.ReviewDate) : "");
+ BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
- BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
- }
initTemplatePath = "File\\Fastreport\\JGZL\\施工图核查记录.frx";
if (File.Exists(rootPath + initTemplatePath))
{
@@ -226,7 +203,7 @@ namespace FineUIPro.Web.JGZL
}
else
{
- Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
+ Alert.ShowInTop("请先保存数据!", MessageBoxIcon.Warning);
return;
}
}
@@ -238,159 +215,53 @@ namespace FineUIPro.Web.JGZL
}
#endregion
- #region 维护
+ #region 提交按钮
///
- /// 增加
+ /// 提交按钮
///
///
///
- protected void btnAdd_Click(object sender, EventArgs e)
+ protected void btnSave_Click(object sender, EventArgs e)
{
- if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
+ if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.JGZL_ConDrawingVerificationMenuId, Const.BtnSave))
{
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ConDrawingVerificationEidt.aspx?projectId={0}", this.tvControlItem.SelectedNodeID, "新增 - ")));
- }
- else
- {
- Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
- return;
- }
- }
-
- ///
- /// 双击编辑
- ///
- ///
- ///
- protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
- {
- if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.JGZL_ConDrawingVerificationMenuId, BLL.Const.BtnModify))
- {
- if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
+ Model.JGZL_ConDrawingVerification newReport = new Model.JGZL_ConDrawingVerification();
+ newReport.DesignUnit = this.txtDesignUnit.Text.Trim();
+ newReport.Professional = this.txtProfessional.Text.Trim();
+ //newReport.Host = this.txtHost.Text.Trim();
+ newReport.VerificationDate = Funs.GetNewDateTime(this.txtVerificationDate.Text);
+ newReport.ConDrawingCode = txtConDrawingCode.Text.Trim();
+ //newReport.Personnel = this.txtPersonnel.Text;
+ newReport.Contents = this.txtContents.Text;
+ newReport.Problems = this.txtProblems.Text;
+ //newReport.Recorder = this.txtRecorder.Text.Trim();
+ newReport.RecordDate = Funs.GetNewDateTime(this.txtRecordDate.Text.Trim());
+ //newReport.Reviewer=this.txtReviewer.Text.Trim();
+ newReport.ReviewDate = Funs.GetNewDateTime(this.txtReviewDate.Text.Trim());
+ if (!string.IsNullOrEmpty(this.ConDrawingVerificationId))
{
- if (!string.IsNullOrEmpty(this.Grid1.SelectedRowID))
- {
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ConDrawingVerificationEidt.aspx?conDrawingVerificationId={0}", this.Grid1.SelectedRowID, "编辑 - ")));
- }
- else
- {
- Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
- return;
- }
+ newReport.ConDrawingVerificationId = this.ConDrawingVerificationId;
+ BLL.ConDrawingVerificationService.UpdateConDrawingVerification(newReport);
+ ShowNotify("修改成功!", MessageBoxIcon.Success);
}
else
{
- Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
- return;
+ newReport.ProjectId = this.tvControlItem.SelectedNodeID;
+ newReport.CompileMan = this.CurrUser.UserId;
+ newReport.CompileDate = DateTime.Now;
+ newReport.ConDrawingVerificationId = SQLHelper.GetNewID(typeof(Model.JGZL_ConDrawingVerification));
+ this.ConDrawingVerificationId = newReport.ConDrawingVerificationId;
+ BLL.ConDrawingVerificationService.AddConDrawingVerification(newReport);
+ ShowNotify("保存成功!", MessageBoxIcon.Success);
}
- }
- else
- {
- ShowNotify("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
- }
- }
-
- ///
- /// 右键编辑
- ///
- ///
- ///
- protected void btnMenuEdit_Click(object sender, EventArgs e)
- {
- if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.JGZL_ConDrawingVerificationMenuId, BLL.Const.BtnModify))
- {
- if (Grid1.SelectedRowIndexArray.Length == 0)
- {
- Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
- return;
- }
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ConDrawingVerificationEidt.aspx?conDrawingVerificationId={0}", Grid1.SelectedRowID, "维护 - ")));
+ PageData();
}
else
{
Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
+ return;
}
}
-
- ///
- /// 右键删除
- ///
- ///
- ///
- protected void btnMenuDelete_Click(object sender, EventArgs e)
- {
- if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.JGZL_ConDrawingVerificationMenuId, Const.BtnDelete))
- {
- if (Grid1.SelectedRowIndexArray.Length == 0)
- {
- Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
- return;
- }
-
- bool isShow = true;
- if (Grid1.SelectedRowIndexArray.Length > 1)
- {
- isShow = false;
- }
- bool isDelete = false;
- foreach (int rowIndex in Grid1.SelectedRowIndexArray)
- {
- string rowID = Grid1.DataKeys[rowIndex][0].ToString();
- if (judgementDelete(rowID, isShow))
- {
- isDelete = true;
- BLL.ConDrawingVerificationService.DeleteConDrawingVerificationById(rowID);
- BLL.Sys_LogService.AddLog(BLL.Const.System_3, this.CurrUser.LoginProjectId, this.CurrUser.UserId, "删除施工图核查记录");
- }
- }
- if (isDelete)
- {
- ShowNotify("删除成功!", MessageBoxIcon.Success);
- }
- this.BindGrid();
- }
- else
- {
- Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
- }
- }
-
- #region 判断是否可删除
- ///
- /// 判断是否可以删除
- ///
- ///
- private bool judgementDelete(string id, bool isShow)
- {
- string content = string.Empty;
-
- if (string.IsNullOrEmpty(content))
- {
- return true;
- }
- else
- {
- if (isShow)
- {
- Alert.ShowInTop(content, MessageBoxIcon.Error);
- }
- return false;
- }
- }
- #endregion
- #endregion
-
- #region 关闭弹出窗口及刷新页面
- ///
- /// 关闭弹出窗口
- ///
- ///
- ///
- protected void Window1_Close(object sender, WindowCloseEventArgs e)
- {
- this.InitTreeMenu();//加载树
- this.BindGrid();
- }
- #endregion
+ #endregion
}
}
\ No newline at end of file
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.designer.cs b/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.designer.cs
index eaac192..777245f 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.designer.cs
+++ b/HJGL_DS/FineUIPro.Web/JGZL/ConDrawingVerification.aspx.designer.cs
@@ -105,13 +105,13 @@ namespace FineUIPro.Web.JGZL
protected global::FineUIPro.ToolbarFill ToolbarFill1;
///
- /// btnAdd 控件。
+ /// btnSave 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.Button btnAdd;
+ protected global::FineUIPro.Button btnSave;
///
/// btnPrint 控件。
@@ -123,49 +123,85 @@ namespace FineUIPro.Web.JGZL
protected global::FineUIPro.Button btnPrint;
///
- /// Grid1 控件。
+ /// SimpleForm1 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.Grid Grid1;
+ protected global::FineUIPro.Form SimpleForm1;
///
- /// ToolbarSeparator1 控件。
+ /// txtDesignUnit 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
+ protected global::FineUIPro.TextBox txtDesignUnit;
///
- /// ToolbarText1 控件。
+ /// txtProfessional 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.ToolbarText ToolbarText1;
+ protected global::FineUIPro.TextBox txtProfessional;
///
- /// ddlPageSize 控件。
+ /// txtVerificationDate 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList ddlPageSize;
+ protected global::FineUIPro.DatePicker txtVerificationDate;
///
- /// Window1 控件。
+ /// txtConDrawingCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.Window Window1;
+ protected global::FineUIPro.TextBox txtConDrawingCode;
+
+ ///
+ /// txtContents 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextArea txtContents;
+
+ ///
+ /// txtProblems 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextArea txtProblems;
+
+ ///
+ /// txtRecordDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtRecordDate;
+
+ ///
+ /// txtReviewDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtReviewDate;
///
/// WindowPrint 控件。
@@ -175,32 +211,5 @@ namespace FineUIPro.Web.JGZL
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Window WindowPrint;
-
- ///
- /// Menu1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.Menu Menu1;
-
- ///
- /// btnMenuEdit 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.MenuButton btnMenuEdit;
-
- ///
- /// btnMenuDelete 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.MenuButton btnMenuDelete;
}
}
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/Contact.aspx b/HJGL_DS/FineUIPro.Web/JGZL/Contact.aspx
index b759cd9..abf4647 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/Contact.aspx
+++ b/HJGL_DS/FineUIPro.Web/JGZL/Contact.aspx
@@ -37,16 +37,72 @@
+
+
+
-
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--
-
+ --%>
-
-
+ --%>
- --%>
-
+ --%>