dataFormat.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. export const regTypeOptions = [
  2. { dictLabel: '有限责任公司', dictValue: '1'},
  3. { dictLabel: '股份有限公司', dictValue: '2'},
  4. { dictLabel: '外资投资企业', dictValue: '3'},
  5. { dictLabel: '国企', dictValue: '4'},
  6. { dictLabel: '独资企业', dictValue: '5'},
  7. { dictLabel: '个体工商户', dictValue: '6'},
  8. { dictLabel: '联营企业', dictValue: '7'},
  9. { dictLabel: '集团所有制', dictValue: '8'},
  10. { dictLabel: '有限合伙', dictValue: '9'},
  11. { dictLabel: '普通合伙', dictValue: '10'}
  12. ]
  13. export const mainProductsOptions = [
  14. { dictLabel: '电子信息', dictValue: '1'},
  15. { dictLabel: '生物与新医药', dictValue: '2'},
  16. { dictLabel: '航空航天', dictValue: '3'},
  17. { dictLabel: '新能源及节能', dictValue: '4'},
  18. { dictLabel: '新材料', dictValue: '5'},
  19. { dictLabel: '先进制造', dictValue: '6'},
  20. { dictLabel: '现代农业', dictValue: '7'},
  21. { dictLabel: '高技术服务', dictValue: '8'},
  22. { dictLabel: '资源与环境', dictValue: '9'},
  23. { dictLabel: '高新技术改造传统产业', dictValue: '10'},
  24. { dictLabel: '其他', dictValue: '11'}
  25. ]
  26. export const techScopeOptions = [
  27. { dictLabel: '电子信息', dictValue: '1'},
  28. { dictLabel: '生物与新医药', dictValue: '2'},
  29. { dictLabel: '航空航天', dictValue: '3'},
  30. { dictLabel: '新材料', dictValue: '4'},
  31. { dictLabel: '高新技术服务', dictValue: '5'},
  32. { dictLabel: '新能源及节能', dictValue: '6'},
  33. { dictLabel: '资源与环境', dictValue: '7'},
  34. { dictLabel: '先进制造与自动化', dictValue: '8'},
  35. { dictLabel: '其他', dictValue: '9'},
  36. { dictLabel: '高新技术改造传统产业', dictValue: '10'}
  37. ]
  38. export const userListOptions = [
  39. { dictLabel: '技术员', dictValue: 'ENT_TECH'},
  40. { dictLabel: '技术负责人', dictValue: 'ENT_ADMIN_TECH'},
  41. { dictLabel: '财务员', dictValue: 'ENT_FIN'},
  42. { dictLabel: '财务负责人', dictValue: 'ENT_ADMIN_FIN'}
  43. ]
  44. export const userAllListOptions = [
  45. { dictLabel: '科德管理员', dictValue: 'ADMIN'},
  46. { dictLabel: '企业管理员', dictValue: 'ENT_ADMIN'},
  47. { dictLabel: '企业技术人员', dictValue: 'ENT_TECH'},
  48. { dictLabel: '企业技术负责人', dictValue: 'ENT_ADMIN_TECH'},
  49. { dictLabel: '企业财务人员', dictValue: 'ENT_FIN'},
  50. { dictLabel: '企业财务负责人', dictValue: 'ENT_ADMIN_FIN'},
  51. { dictLabel: '政务用户', dictValue: 'GOV_PROV'},
  52. { dictLabel: '政务用户', dictValue: 'GOV_CITY'},
  53. { dictLabel: '政务用户', dictValue: 'GOV_DISTRI'},
  54. ]
  55. // ADMIN,
  56. // GOV_PROV GOV_CITY GOV_DISTRI,
  57. // ENT_ADMIN ENT_TECH ENT_ADMIN_TECH ENT_FIN ENT_ADMIN_FIN;
  58. /**
  59. * 服务状态 1:待审核 2:服务中 3:已过期 4:冻结
  60. */
  61. export const entStateOptions = [
  62. { dictLabel: '待审核', dictValue: '1'},
  63. { dictLabel: '服务中', dictValue: '2'},
  64. { dictLabel: '已过期', dictValue: '3'},
  65. {dictLabel: '冻结',dictValue: '4'}
  66. ]
  67. export const yesOrNoOptions = [
  68. { dictLabel: '是', dictValue: 1},
  69. { dictLabel: '否', dictValue: 0}
  70. ]
  71. export const successOptions = [
  72. { dictLabel: '成功', dictValue: true},
  73. { dictLabel: '失败', dictValue: false}
  74. ]
  75. export const booleanOptions = [
  76. { dictLabel: '是', dictValue: true},
  77. { dictLabel: '否', dictValue: false}
  78. ]
  79. /**
  80. *
  81. * 审核状态 1:待审核 2:通过 3:驳回
  82. */
  83. export const authStateOptions =[
  84. { dictLabel: '待提交', dictValue: '1'},
  85. { dictLabel: '待审核', dictValue: '2'},
  86. { dictLabel: '审核通过', dictValue: '3'},
  87. { dictLabel: '审核拒绝', dictValue: '4'}
  88. ]
  89. export const dutyAreaOptions =[
  90. { dictLabel: '省级', dictValue: 1},
  91. { dictLabel: '市级', dictValue: 2},
  92. { dictLabel: '区级', dictValue: 3}
  93. ]
  94. export const authStateEntOptions = [
  95. { dictLabel: '待审核', dictValue: '1'},
  96. { dictLabel: '审核通过', dictValue: '2'},
  97. { dictLabel: '审核拒绝', dictValue: '3'}
  98. ]
  99. export const businessIndustryOptions = [
  100. {
  101. value: '农、林、牧、渔业',
  102. label: '农、林、牧、渔业',
  103. children: [
  104. {value: '农业',label: '农业'},
  105. {value: '林业',label: '林业'},
  106. {value: '畜牧业',label: '畜牧业'},
  107. {value: '渔业',label: '渔业'},
  108. {value: '农林牧渔专业及辅助性活动',label: '农林牧渔专业及辅助性活动'}
  109. ],
  110. },
  111. {
  112. value: '采矿业',
  113. label: '采矿业',
  114. children: [
  115. {value: '煤炭开采和洗选业',label: '煤炭开采和洗选业'},
  116. {value: '石油和天然气开采业',label: '石油和天然气开采业'},
  117. {value: '黑色金属矿采选业',label: '黑色金属矿采选业'},
  118. {value: '有色金属矿采选业',label: '有色金属矿采选业'},
  119. {value: '非金属矿采选业',label: '非金属矿采选业'},
  120. {value: '开采专业及辅助性活动',label: '开采专业及辅助性活动'},
  121. {value: '其他采矿业',label: '其他采矿业'}
  122. ],
  123. },
  124. {
  125. value: '制造业',
  126. label: '制造业',
  127. children: [
  128. {value: '农副食品加工业',label: '农副食品加工业'},
  129. {value: '食品制造业',label: '食品制造业'},
  130. {value: '酒、饮料和精制茶制造业',label: '酒、饮料和精制茶制造业'},
  131. {value: '烟草制品业',label: '烟草制品业'},
  132. {value: '纺织业',label: '纺织业'},
  133. {value: '纺织服装、服饰业',label: '纺织服装、服饰业',},
  134. {value: '皮革、毛皮、羽毛及其制品和制鞋业',label: '皮革、毛皮、羽毛及其制品和制鞋业',},
  135. {value: '木材加工和木、竹、藤、棕、草制品业',label: '木材加工和木、竹、藤、棕、草制品业',},
  136. {value: '家具制造业',label: '家具制造业',},
  137. {value: '造纸和纸制品业',label: '造纸和纸制品业',},
  138. {value: '印刷和记录媒介复制业',label: '印刷和记录媒介复制业',},
  139. {value: '文教、工美、体育和娱乐用品制造业',label: '文教、工美、体育和娱乐用品制造业',},
  140. {value: '石油、煤炭及其他燃料加工业',label: '石油、煤炭及其他燃料加工业',},
  141. {value: '化学原料和化学制品制造业',label: '化学原料和化学制品制造业',},
  142. {value: '医药制造业',label: '医药制造业',},
  143. {value: '化学纤维制造业',label: '化学纤维制造业',},
  144. {value: '橡胶和塑料制品业',label: '橡胶和塑料制品业',},
  145. {value: '非金属矿物制品业',label: '非金属矿物制品业',},
  146. {value: '黑色金属冶炼和压延加工业',label: '黑色金属冶炼和压延加工业'},
  147. {value: '有色金属冶炼和压延加工业', label: '有色金属冶炼和压延加工业'},
  148. {value: '金属制品业', label: '金属制品业'},
  149. {value: '通用设备制造业', label: '通用设备制造业'},
  150. {value: '专用设备制造业', label: '专用设备制造业'},
  151. {value: '汽车制造业', label: '汽车制造业'},
  152. {value: '铁路、船舶、航空航天和其他运输设备制造业', label: '铁路、船舶、航空航天和其他运输设备制造业'},
  153. {value: '电气机械和器材制造业', label: '电气机械和器材制造业'},
  154. {value: '计算机、通信和其他电子设备制造业', label: '计算机、通信和其他电子设备制造业'},
  155. {value: '仪器仪表制造业', label: '仪器仪表制造业'},
  156. {value: '其他制造业', label: '其他制造业'},
  157. {value: '废弃资源综合利用业', label: '废弃资源综合利用业'},
  158. {value: '金属制品、机械和设备修理业', label: '金属制品、机械和设备修理业'}
  159. ]
  160. },
  161. {
  162. value: '电力、热力、燃气及水生产和供应业',
  163. label: '电力、热力、燃气及水生产和供应业',
  164. children: [
  165. {value: '电力、热力生产和供应业',label: '电力、热力生产和供应业',},
  166. {value: '燃气生产和供应业',label: '燃气生产和供应业',},
  167. {value: '水的生产和供应业',label: '水的生产和供应业',}
  168. ]
  169. },
  170. {
  171. value: '建筑业',
  172. label: '建筑业',
  173. children: [
  174. {value: '房屋建筑业',label: '房屋建筑业'},
  175. {value: '土木工程建筑业',label: '土木工程建筑业'},
  176. {value: '建筑安装业',label: '建筑安装业'},
  177. {value: '建筑装饰、装修和其他建筑业',label: '建筑装饰、装修和其他建筑业'}
  178. ]
  179. },
  180. {
  181. value: '批发和零售业',
  182. label: '批发和零售业',
  183. children: [
  184. {value: '批发业',label: '批发业'},
  185. {value: '零售业',label: '零售业'}
  186. ]
  187. },
  188. {
  189. value: '交通运输、仓储和邮政业',
  190. label: '交通运输、仓储和邮政业',
  191. children: [
  192. {value: '铁路运输业',label: '铁路运输业'},
  193. {value: '道路运输业',label: '道路运输业'},
  194. {value: '水上运输业',label: '水上运输业'},
  195. {value: '航空运输业',label: '航空运输业'},
  196. {value: '管道运输业',label: '管道运输业'},
  197. {value: '多式联运和运输代理业',label: '多式联运和运输代理业'},
  198. {value: '装卸搬运和仓储业',label: '装卸搬运和仓储业'},
  199. {value: '邮政业',label: '邮政业'},
  200. ]
  201. },
  202. {
  203. value: '住宿和餐饮业',
  204. label: '住宿和餐饮业',
  205. children: [
  206. {value: '住宿业',label: '住宿业'},
  207. {value: '餐饮业',label: '餐饮业'}
  208. ]
  209. },
  210. {
  211. value: '信息传输、软件和信息技术服务业',
  212. label: '信息传输、软件和信息技术服务业',
  213. children: [
  214. {value: '电信、广播电视和卫星传输服务',label: '电信、广播电视和卫星传输服务'},
  215. {value: '互联网和相关服务',label: '互联网和相关服务'},
  216. {value: '软件和信息技术服务业',label: '软件和信息技术服务业'}
  217. ]
  218. },
  219. {
  220. value: '金融业',
  221. label: '金融业',
  222. children: [
  223. {value: '货币金融服务',label: '货币金融服务'},
  224. {value: '资本市场服务',label: '资本市场服务'},
  225. {value: '保险业',label: '保险业'},
  226. {value: '其他金融业',label: '其他金融业'}
  227. ]
  228. },
  229. {
  230. value: '房地产业',
  231. label: '房地产业',
  232. children: [
  233. {value: '房地产业',label: '房地产业'},
  234. ]
  235. },
  236. {
  237. value: '租赁和商务服务业',
  238. label: '租赁和商务服务业',
  239. children: [
  240. {value: '租赁业',label: '租赁业',},
  241. {value: '商务服务业',label: '商务服务业',},
  242. ]
  243. },
  244. {
  245. value: '科学研究和技术服务业',
  246. label: '科学研究和技术服务业',
  247. children: [
  248. {value: '研究和试验发展',label: '研究和试验发展'},
  249. {value: '专业技术服务业',label: '专业技术服务业'},
  250. {value: '科技推广和应用服务业',label: '科技推广和应用服务业'},
  251. ]
  252. },
  253. {
  254. value: '水利、环境和公共设施管理业',
  255. label: '水利、环境和公共设施管理业',
  256. children: [
  257. {value: '水利管理业',label: '水利管理业'},
  258. {value: '生态保护和环境治理业',label: '生态保护和环境治理业'},
  259. {value: '公共设施管理业',label: '公共设施管理业'},
  260. {value: '土地管理业',label: '土地管理业'},
  261. ]
  262. },
  263. {
  264. value: '居民服务、修理和其他服务业',
  265. label: '居民服务、修理和其他服务业',
  266. children: [
  267. {value: '居民服务业',label: '居民服务业'},
  268. {value: '机动车、电子产品和日用产品修理业',label: '机动车、电子产品和日用产品修理业'},
  269. {value: '其他服务业',label: '其他服务业'},
  270. ]
  271. },
  272. {
  273. value: '教育',
  274. label: '教育',
  275. children: [
  276. {value: '教育',label: '教育'},
  277. ]
  278. },
  279. {
  280. value: '卫生和社会工作',
  281. label: '卫生和社会工作',
  282. children: [
  283. {value: '卫生',label: '卫生'},
  284. {value: '社会工作',label: '社会工作'}
  285. ]
  286. },
  287. {
  288. value: '文化、体育和娱乐业',
  289. label: '文化、体育和娱乐业',
  290. children: [
  291. {value: '新闻和出版业',label: '新闻和出版业',},
  292. {value: '广播、电视、电影和录音制作业',label: '广播、电视、电影和录音制作业',},
  293. {value: '文化艺术业',label: '文化艺术业',},
  294. {value: '体育',label: '体育',},
  295. {value: '娱乐业',label: '娱乐业',},
  296. ]
  297. },
  298. {
  299. value: '公共管理、社会保障和社会组织',
  300. label: '公共管理、社会保障和社会组织',
  301. children: [
  302. {value: '中国共产党机关',label: '中国共产党机关',},
  303. {value: '国家机构',label: '国家机构',},
  304. {value: '人民政协、民主党派',label: '人民政协、民主党派',},
  305. {value: '社会保障',label: '社会保障',},
  306. {value: '群众团体、社会团体和其他成员组织',label: '群众团体、社会团体和其他成员组织',},
  307. {value: '基层群众自治组织',label: '基层群众自治组织',},
  308. ]
  309. },
  310. {
  311. value: '国际组织',
  312. label: '国际组织',
  313. children: [
  314. {value: '国际组织', label: '国际组织'}
  315. ]
  316. }
  317. ]
  318. /**
  319. * 申报状态
  320. */
  321. export const reportStateOptions = [
  322. { dictLabel: '待补充', dictValue: 1},
  323. { dictLabel: '待申报', dictValue: 2},
  324. { dictLabel: '待审核', dictValue: 3},
  325. { dictLabel: '已申报', dictValue: 4}
  326. ]
  327. export const techSourceOptions = [
  328. { dictLabel: '自有技术', dictValue: '1' },
  329. { dictLabel: '引进技术后消化再创新', dictValue: '2'},
  330. { dictLabel: '高校、院所产学研合作项目', dictValue: '3'},
  331. { dictLabel: '其他企业技术', dictValue: '4'},
  332. ]
  333. export const devOptions = [
  334. { dictLabel: '新产品', dictValue: '1'},
  335. { dictLabel: '新技术', dictValue: '2'},
  336. { dictLabel: '新工艺', dictValue: '3'},
  337. { dictLabel: '引进技术的消化、吸收和创新', dictValue: '4'},
  338. ]
  339. export const projectTypeOptions = [
  340. { dictLabel: '自主研发', dictValue: '1'},
  341. { dictLabel: '委托研发', dictValue: '2'},
  342. { dictLabel: '合作研发', dictValue: '3'},
  343. { dictLabel: '自主研发(含委托研发)', dictValue: '4'},
  344. ]
  345. export const industryTypeOptions = [
  346. { dictLabel: '激光', dictValue: 1},
  347. { dictLabel: '新型显示', dictValue: 2},
  348. { dictLabel: '新一代移动通信', dictValue: 3},
  349. { dictLabel: '数控机床', dictValue: 4},
  350. { dictLabel: '地球空间信息', dictValue: 5},
  351. { dictLabel: '半导体及规模集成电路', dictValue: 6},
  352. { dictLabel: '软件及服务外包', dictValue: 7},
  353. { dictLabel: '新能源', dictValue: 8},
  354. { dictLabel: '新材料', dictValue: 9},
  355. { dictLabel: '新动力汽车', dictValue: 10},
  356. { dictLabel: '生物医药', dictValue: 11},
  357. { dictLabel: '现代物流', dictValue: 12},
  358. { dictLabel: '动漫', dictValue: 13},
  359. { dictLabel: '节能环保装备', dictValue: 14},
  360. { dictLabel: '金融服务', dictValue: 15},
  361. ]
  362. export function getLabel(list, val) {
  363. for (let i = 0; i < list.length; i++) {
  364. if (val == list[i].dictValue) {
  365. return list[i].dictLabel
  366. }
  367. }
  368. }