|
@@ -36,7 +36,7 @@ export const techScopeOptions = [
|
|
|
{ dictLabel: '资源与环境', dictValue: '7'},
|
|
|
{ dictLabel: '先进制造与自动化', dictValue: '8'},
|
|
|
{ dictLabel: '其他', dictValue: '9'},
|
|
|
- { dictLabel: '高新技术改造传统产业', dictValue: '9'}
|
|
|
+ { dictLabel: '高新技术改造传统产业', dictValue: '10'}
|
|
|
]
|
|
|
|
|
|
export const userListOptions = [
|
|
@@ -47,12 +47,19 @@ export const userListOptions = [
|
|
|
]
|
|
|
|
|
|
export const userAllListOptions = [
|
|
|
+ { dictLabel: '科德管理员', dictValue: 'ADMIN'},
|
|
|
{ dictLabel: '企业管理员', dictValue: 'ENT_ADMIN'},
|
|
|
- { dictLabel: '技术员', dictValue: 'ENT_TECH'},
|
|
|
- { dictLabel: '技术负责人', dictValue: 'ENT_ADMIN_TECH'},
|
|
|
- { dictLabel: '财务员', dictValue: 'ENT_FIN'},
|
|
|
- { dictLabel: '财务负责人', dictValue: 'ENT_ADMIN_FIN'}
|
|
|
+ { dictLabel: '企业技术人员', dictValue: 'ENT_TECH'},
|
|
|
+ { dictLabel: '企业技术负责人', dictValue: 'ENT_ADMIN_TECH'},
|
|
|
+ { dictLabel: '企业财务人员', dictValue: 'ENT_FIN'},
|
|
|
+ { dictLabel: '企业财务负责人', dictValue: 'ENT_ADMIN_FIN'},
|
|
|
+ { dictLabel: '政务用户', dictValue: 'GOV_PROV'},
|
|
|
+ { dictLabel: '政务用户', dictValue: 'GOV_CITY'},
|
|
|
+ { dictLabel: '政务用户', dictValue: 'GOV_DISTRI'},
|
|
|
]
|
|
|
+// ADMIN,
|
|
|
+// GOV_PROV GOV_CITY GOV_DISTRI,
|
|
|
+// ENT_ADMIN ENT_TECH ENT_ADMIN_TECH ENT_FIN ENT_ADMIN_FIN;
|
|
|
/**
|
|
|
* 服务状态 1:待审核 2:服务中 3:已过期 4:冻结
|
|
|
*/
|
|
@@ -349,6 +356,24 @@ export const projectTypeOptions = [
|
|
|
{ dictLabel: '合作研发', dictValue: '3'},
|
|
|
{ dictLabel: '自主研发(含委托研发)', dictValue: '4'},
|
|
|
]
|
|
|
+
|
|
|
+export const industryTypeOptions = [
|
|
|
+ { dictLabel: '激光', dictValue: 1},
|
|
|
+ { dictLabel: '新型显示', dictValue: 2},
|
|
|
+ { dictLabel: '新一代移动通信', dictValue: 3},
|
|
|
+ { dictLabel: '数控机床', dictValue: 4},
|
|
|
+ { dictLabel: '地球空间信息', dictValue: 5},
|
|
|
+ { dictLabel: '半导体及规模集成电路', dictValue: 6},
|
|
|
+ { dictLabel: '软件及服务外包', dictValue: 7},
|
|
|
+ { dictLabel: '新能源', dictValue: 8},
|
|
|
+ { dictLabel: '新材料', dictValue: 9},
|
|
|
+ { dictLabel: '新动力汽车', dictValue: 10},
|
|
|
+ { dictLabel: '生物医药', dictValue: 11},
|
|
|
+ { dictLabel: '现代物流', dictValue: 12},
|
|
|
+ { dictLabel: '动漫', dictValue: 13},
|
|
|
+ { dictLabel: '节能环保装备', dictValue: 14},
|
|
|
+ { dictLabel: '金融服务', dictValue: 15},
|
|
|
+]
|
|
|
export function getLabel(list, val) {
|
|
|
for (let i = 0; i < list.length; i++) {
|
|
|
if (val == list[i].dictValue) {
|