20230724
This commit is contained in:
@@ -34,6 +34,10 @@
|
||||
{
|
||||
dropName.DataSource = HSSE_getContractType();
|
||||
}
|
||||
else if (groupId == Group_CertificateType)
|
||||
{
|
||||
dropName.DataSource = HSSE_getCertificateType();
|
||||
}
|
||||
dropName.DataBind();
|
||||
if (isShowPlease)
|
||||
{
|
||||
@@ -102,6 +106,11 @@
|
||||
/// 合同类型 组id
|
||||
/// </summary>
|
||||
public const string Group_ContractType = "ContractType";
|
||||
|
||||
/// <summary>
|
||||
/// 证书类型 组id
|
||||
/// </summary>
|
||||
public const string Group_CertificateType = "CertificateType";
|
||||
#endregion
|
||||
|
||||
#region 公共平台
|
||||
@@ -348,6 +357,20 @@
|
||||
list[2] = new ListItem("以完成一定工作量", "3");
|
||||
return list;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 证书类型
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static ListItem[] HSSE_getCertificateType()
|
||||
{
|
||||
ListItem[] list = new ListItem[4];
|
||||
list[0] = new ListItem("特岗", "1");
|
||||
list[1] = new ListItem("安管", "2");
|
||||
list[2] = new ListItem("特种设备", "3");
|
||||
list[3] = new ListItem("其他", "-1");
|
||||
return list;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user