Merge branch 'master' of https://gitee.com/frane-yang/SGGL_SeDin_New
This commit is contained in:
@@ -338,6 +338,35 @@ namespace BLL
|
||||
|
||||
return list;
|
||||
}
|
||||
public static ListItem[] GetMajorItems3()
|
||||
{
|
||||
var list = new ListItem[12];
|
||||
list[0] = new ListItem("土建工程", "土建工程");
|
||||
list[1] = new ListItem("钢结构预制工程", "钢结构预制工程");
|
||||
list[2] = new ListItem("工艺管道安装工程", "工艺管道安装工程");
|
||||
list[3] = new ListItem("工艺设备安装工程", "工艺设备安装工程");
|
||||
list[4] = new ListItem("非标设备现场制作安装工程", "非标设备现场制作安装工程");
|
||||
list[5] = new ListItem("电气工程", "电气工程");
|
||||
list[6] = new ListItem("仪表工程", "仪表工程");
|
||||
list[7] = new ListItem("电信工程", "电信工程");
|
||||
list[8] = new ListItem("水暖安装工程", "水暖安装工程");
|
||||
list[9] = new ListItem("防腐绝热工程", "防腐绝热工程");
|
||||
list[10] = new ListItem("无损检测工程", "无损检测工程");
|
||||
list[11] = new ListItem("消防工程", "消防工程");
|
||||
|
||||
return list;
|
||||
}
|
||||
public static void IniGetMajorItems3DownList(FineUIPro.DropDownList dropName, bool isShowPlease)
|
||||
{
|
||||
dropName.DataValueField = "Value";
|
||||
dropName.DataTextField = "Text";
|
||||
dropName.DataSource = GetMajorItems3();
|
||||
dropName.DataBind();
|
||||
if (isShowPlease)
|
||||
{
|
||||
Funs.FineUIPleaseSelect(dropName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string GetMajorName(string majorIds)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user