highTechConfig.jsx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. // 高新
  2. const highTechColumns =[
  3. {
  4. title: "序号",
  5. dataIndex: "key",
  6. key: "key",
  7. },
  8. {
  9. title: "派单时间",
  10. dataIndex: "distributionTime",
  11. key: "distributionTime"
  12. },
  13. {
  14. title: "派单省份",
  15. dataIndex: "province",
  16. key: "province"
  17. },
  18. {
  19. title: "订单部门",
  20. dataIndex: "depName",
  21. key: "depName"
  22. },
  23. {
  24. title: "营销员",
  25. dataIndex: "salesmanName",
  26. key: "salesmanName"
  27. },
  28. {
  29. title: "合同编号",
  30. dataIndex: "contractNo",
  31. key: "contractNo"
  32. },
  33. {
  34. title: "订单编号",
  35. dataIndex: "orderNo",
  36. key: "orderNo"
  37. },
  38. {
  39. title: "签单客户",
  40. dataIndex: "userName",
  41. key: "userName"
  42. },
  43. {
  44. title: "项目类型",
  45. dataIndex: "cname",
  46. key: "cname"
  47. },
  48. {
  49. title: "项目名称",
  50. dataIndex: "pname",
  51. key: "pname"
  52. },
  53. {
  54. title: "负责部门",
  55. dataIndex: "techDepName",
  56. key: "techDepName"
  57. },
  58. {
  59. title: "咨询师/咨询经理",
  60. dataIndex: "techName",
  61. key: "techName"
  62. },
  63. {
  64. title: "是否立项/时间",
  65. dataIndex: "setUpStatus",
  66. key: "setUpStatus"
  67. },
  68. {
  69. title: "是否抽查",
  70. dataIndex: "spotCheckStatus",
  71. key: "spotCheckStatus"
  72. },
  73. {
  74. title: "联系人电话",
  75. dataIndex: "contactMobile",
  76. key: "contactMobile"
  77. },
  78. {
  79. title: "法人电话",
  80. dataIndex: "legalPersonTel",
  81. key: "legalPersonTel"
  82. },
  83. {
  84. title: "证书编号",
  85. dataIndex: "certificateNumber",
  86. key: "certificateNumber"
  87. },
  88. {
  89. title: "申报批次",
  90. dataIndex: "declarationBatch",
  91. key: "declarationBatch"
  92. },
  93. {
  94. title: "项目金额",
  95. dataIndex: "commodityPrice",
  96. key: "commodityPrice"
  97. },
  98. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  99. {
  100. title: "项目状态",
  101. dataIndex: "projectStatus",
  102. key: "projectStatus",
  103. render:(value)=>{
  104. return (
  105. value === 0 ? '未开始' :
  106. value === 1 ? '已开始' :
  107. value === 2 ? '已暂停' :
  108. value === 3 ? '已完成' :
  109. value === 4 ? '已驳回' :
  110. value === 5 ? '已退单' : ''
  111. )
  112. }
  113. },
  114. ];
  115. // 双软
  116. const doubleSoft = [
  117. {
  118. title: "序号",
  119. dataIndex: "key",
  120. key: "key",
  121. },
  122. {
  123. title: "派单时间",
  124. dataIndex: "distributionTime",
  125. key: "distributionTime"
  126. },
  127. {
  128. title: "派单省份",
  129. dataIndex: "province",
  130. key: "province"
  131. },
  132. {
  133. title: "订单部门",
  134. dataIndex: "depName",
  135. key: "depName"
  136. },
  137. {
  138. title: "营销员",
  139. dataIndex: "salesmanName",
  140. key: "salesmanName"
  141. },
  142. {
  143. title: "合同编号",
  144. dataIndex: "contractNo",
  145. key: "contractNo"
  146. },
  147. {
  148. title: "订单编号",
  149. dataIndex: "orderNo",
  150. key: "orderNo"
  151. },
  152. {
  153. title: "签单客户",
  154. dataIndex: "userName",
  155. key: "userName"
  156. },
  157. {
  158. title: "项目类型",
  159. dataIndex: "cname",
  160. key: "cname"
  161. },
  162. {
  163. title: "项目名称",
  164. dataIndex: "pname",
  165. key: "pname"
  166. },
  167. {
  168. title: "负责部门",
  169. dataIndex: "techDepName",
  170. key: "techDepName"
  171. },
  172. {
  173. title: "咨询师/咨询经理",
  174. dataIndex: "techName",
  175. key: "techName"
  176. },
  177. {
  178. title: "下证/授权时间",
  179. dataIndex: "licenceTime",
  180. key: "licenceTime"
  181. },
  182. {
  183. title: "项目金额",
  184. dataIndex: "commodityPrice",
  185. key: "commodityPrice"
  186. },
  187. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  188. {
  189. title: "项目状态",
  190. dataIndex: "projectStatus",
  191. key: "projectStatus",
  192. render:(value)=>{
  193. return (
  194. value === 0 ? '未开始' :
  195. value === 1 ? '已开始' :
  196. value === 2 ? '已暂停' :
  197. value === 3 ? '已完成' :
  198. value === 4 ? '已驳回' :
  199. value === 5 ? '已退单' : ''
  200. )
  201. }
  202. },
  203. ];
  204. // 软著
  205. const softWriting = [
  206. {
  207. title: "序号",
  208. dataIndex: "key",
  209. key: "key",
  210. },
  211. {
  212. title: "派单时间",
  213. dataIndex: "distributionTime",
  214. key: "distributionTime"
  215. },
  216. {
  217. title: "派单省份",
  218. dataIndex: "province",
  219. key: "province"
  220. },
  221. {
  222. title: "订单部门",
  223. dataIndex: "depName",
  224. key: "depName"
  225. },
  226. {
  227. title: "营销员",
  228. dataIndex: "salesmanName",
  229. key: "salesmanName"
  230. },
  231. {
  232. title: "合同编号",
  233. dataIndex: "contractNo",
  234. key: "contractNo"
  235. },
  236. {
  237. title: "订单编号",
  238. dataIndex: "orderNo",
  239. key: "orderNo"
  240. },
  241. {
  242. title: "签单客户",
  243. dataIndex: "userName",
  244. key: "userName"
  245. },
  246. {
  247. title: "项目类型",
  248. dataIndex: "cname",
  249. key: "cname"
  250. },
  251. {
  252. title: "项目名称",
  253. dataIndex: "pname",
  254. key: "pname"
  255. },
  256. {
  257. title: "负责部门",
  258. dataIndex: "techDepName",
  259. key: "techDepName"
  260. },
  261. {
  262. title: "咨询师/咨询经理",
  263. dataIndex: "techName",
  264. key: "techName"
  265. },
  266. {
  267. title: "项目数量/下证数",
  268. dataIndex: "commodityQuantity",
  269. key: "commodityQuantity"
  270. },
  271. {
  272. title: "有无材料",
  273. dataIndex: "ifMaterial",
  274. key: "ifMaterial"
  275. },
  276. {
  277. title: "加急天数",
  278. dataIndex: "urgentDay",
  279. key: "urgentDay"
  280. },
  281. {
  282. title: "下证/授权时间",
  283. dataIndex: "licenceTime",
  284. key: "licenceTime"
  285. },
  286. {
  287. title: "证书编号",
  288. dataIndex: "certificateNumber",
  289. key: "certificateNumber"
  290. },
  291. {
  292. title: "项目金额",
  293. dataIndex: "commodityPrice",
  294. key: "commodityPrice"
  295. },
  296. {
  297. title: "成本金额",
  298. dataIndex: "costAmount",
  299. key: "costAmount"
  300. },
  301. {
  302. title: "利润金额",
  303. dataIndex: "profit",
  304. key: "profit"
  305. },
  306. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  307. {
  308. title: "项目状态",
  309. dataIndex: "projectStatus",
  310. key: "projectStatus",
  311. render:(value)=>{
  312. return (
  313. value === 0 ? '未开始' :
  314. value === 1 ? '已开始' :
  315. value === 2 ? '已暂停' :
  316. value === 3 ? '已完成' :
  317. value === 4 ? '已驳回' :
  318. value === 5 ? '已退单' : ''
  319. )
  320. }
  321. },
  322. ];
  323. // 专利
  324. const patent =[
  325. {
  326. title: "序号",
  327. dataIndex: "key",
  328. key: "key",
  329. },
  330. {
  331. title: "派单时间",
  332. dataIndex: "distributionTime",
  333. key: "distributionTime"
  334. },
  335. {
  336. title: "派单省份",
  337. dataIndex: "province",
  338. key: "province"
  339. },
  340. {
  341. title: "订单部门",
  342. dataIndex: "depName",
  343. key: "depName"
  344. },
  345. {
  346. title: "营销员",
  347. dataIndex: "salesmanName",
  348. key: "salesmanName"
  349. },
  350. {
  351. title: "合同编号",
  352. dataIndex: "contractNo",
  353. key: "contractNo"
  354. },
  355. {
  356. title: "订单编号",
  357. dataIndex: "orderNo",
  358. key: "orderNo"
  359. },
  360. {
  361. title: "签单客户",
  362. dataIndex: "userName",
  363. key: "userName"
  364. },
  365. {
  366. title: "项目类型",
  367. dataIndex: "cname",
  368. key: "cname"
  369. },
  370. {
  371. title: "项目名称",
  372. dataIndex: "pname",
  373. key: "pname"
  374. },
  375. {
  376. title: "负责部门",
  377. dataIndex: "techDepName",
  378. key: "techDepName"
  379. },
  380. {
  381. title: "咨询师/咨询经理",
  382. dataIndex: "techName",
  383. key: "techName"
  384. },
  385. {
  386. title: "项目数量/下证数",
  387. dataIndex: "commodityQuantity",
  388. key: "commodityQuantity"
  389. },
  390. {
  391. title: "是否高新",
  392. dataIndex: "highTechstatus",
  393. key: "highTechstatus",
  394. },
  395. {
  396. title: "驳回数",
  397. dataIndex: "rejectCount",
  398. key: "rejectCount"
  399. },
  400. {
  401. title: "专利号",
  402. dataIndex: "patentNumber",
  403. key: "patentNumber"
  404. },
  405. {
  406. title: "专利名称",
  407. dataIndex: "patentName",
  408. key: "patentName"
  409. },
  410. {
  411. title: "受理时间",
  412. dataIndex: "acceptTime",
  413. key: "acceptTime"
  414. },
  415. // {
  416. // title: "授权时间",
  417. // dataIndex: "orderNo",
  418. // key: "orderNo"
  419. // },
  420. {
  421. title: "下证/授权时间",
  422. dataIndex: "licenceTime",
  423. key: "licenceTime"
  424. },
  425. {
  426. title: "项目金额",
  427. dataIndex: "commodityPrice",
  428. key: "commodityPrice"
  429. },
  430. {
  431. title: "成本金额",
  432. dataIndex: "costAmount",
  433. key: "costAmount"
  434. },
  435. {
  436. title: "利润金额",
  437. dataIndex: "profit",
  438. key: "profit"
  439. },
  440. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  441. {
  442. title: "项目状态",
  443. dataIndex: "projectStatus",
  444. key: "projectStatus",
  445. render:(value)=>{
  446. return (
  447. value === 0 ? '未开始' :
  448. value === 1 ? '已开始' :
  449. value === 2 ? '已暂停' :
  450. value === 3 ? '已完成' :
  451. value === 4 ? '已驳回' :
  452. value === 5 ? '已退单' : ''
  453. )
  454. }
  455. },
  456. ];
  457. // 通用表
  458. const currency = [
  459. {
  460. title: "序号",
  461. dataIndex: "key",
  462. key: "key",
  463. },
  464. {
  465. title: "派单时间",
  466. dataIndex: "distributionTime",
  467. key: "distributionTime"
  468. },
  469. {
  470. title: "派单省份",
  471. dataIndex: "province",
  472. key: "province"
  473. },
  474. {
  475. title: "订单部门",
  476. dataIndex: "depName",
  477. key: "depName"
  478. },
  479. {
  480. title: "营销员",
  481. dataIndex: "salesmanName",
  482. key: "salesmanName"
  483. },
  484. {
  485. title: "合同编号",
  486. dataIndex: "contractNo",
  487. key: "contractNo"
  488. },
  489. {
  490. title: "订单编号",
  491. dataIndex: "orderNo",
  492. key: "orderNo"
  493. },
  494. {
  495. title: "签单客户",
  496. dataIndex: "userName",
  497. key: "userName"
  498. },
  499. {
  500. title: "项目类型",
  501. dataIndex: "cname",
  502. key: "cname"
  503. },
  504. {
  505. title: "项目名称",
  506. dataIndex: "pname",
  507. key: "pname"
  508. },
  509. {
  510. title: "负责部门",
  511. dataIndex: "techDepName",
  512. key: "techDepName"
  513. },
  514. {
  515. title: "咨询师/咨询经理",
  516. dataIndex: "techName",
  517. key: "techName"
  518. },
  519. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  520. {
  521. title: "项目状态",
  522. dataIndex: "projectStatus",
  523. key: "projectStatus",
  524. render:(value)=>{
  525. return (
  526. value === 0 ? '未开始' :
  527. value === 1 ? '已开始' :
  528. value === 2 ? '已暂停' :
  529. value === 3 ? '已完成' :
  530. value === 4 ? '已驳回' :
  531. value === 5 ? '已退单' : ''
  532. )
  533. }
  534. },
  535. ];
  536. export {
  537. highTechColumns,
  538. doubleSoft,
  539. softWriting,
  540. patent,
  541. currency,
  542. }