数据治理
This commit is contained in:
@@ -161,6 +161,27 @@ namespace FineUIPro.Web.ProjectData
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 已完工和停缓建必选审批人
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void rblReasonType_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
string reasonType = this.rblReasonType.SelectedValue;
|
||||
if (reasonType == "已完工/撤场" || reasonType == "停缓建")
|
||||
{
|
||||
this.cbNext.SelectedValue = "1";
|
||||
this.cbNext.Readonly = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.cbNext.SelectedValue = "0";
|
||||
this.cbNext.Readonly = false;
|
||||
}
|
||||
cbNext_SelectedIndexChanged(sender, e);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 是否使用触发事件
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user