20211207 从集团获取安全公共资源功能添加

This commit is contained in:
2021-12-07 18:42:00 +08:00
parent 899a39776a
commit c55a180a8a
36 changed files with 1525 additions and 103 deletions
@@ -519,5 +519,22 @@ namespace FineUIPro.Web.HSSE.EduTrain
this.BindGrid();
}
/// <summary>
/// 从集团获取
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnGet_Click(object sender, EventArgs e)
{
var returnValue = CNCECHSSEWebService.getTraining_TrainTestDBList();
if (returnValue.code == 1)
{
ShowNotify(returnValue.message, MessageBoxIcon.Success);
}
else
{
Alert.ShowInTop(returnValue.message, MessageBoxIcon.Success);
}
}
}
}