highTechConfig.jsx 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  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. title: "特别说明",
  116. dataIndex: "specialComment",
  117. key: "specialComment"
  118. },
  119. ];
  120. // 双软
  121. const doubleSoft = [
  122. {
  123. title: "序号",
  124. dataIndex: "key",
  125. key: "key",
  126. },
  127. {
  128. title: "派单时间",
  129. dataIndex: "distributionTime",
  130. key: "distributionTime"
  131. },
  132. {
  133. title: "派单省份",
  134. dataIndex: "province",
  135. key: "province"
  136. },
  137. {
  138. title: "订单部门",
  139. dataIndex: "depName",
  140. key: "depName"
  141. },
  142. {
  143. title: "营销员",
  144. dataIndex: "salesmanName",
  145. key: "salesmanName"
  146. },
  147. {
  148. title: "合同编号",
  149. dataIndex: "contractNo",
  150. key: "contractNo"
  151. },
  152. {
  153. title: "订单编号",
  154. dataIndex: "orderNo",
  155. key: "orderNo"
  156. },
  157. {
  158. title: "签单客户",
  159. dataIndex: "userName",
  160. key: "userName"
  161. },
  162. {
  163. title: "项目类型",
  164. dataIndex: "cname",
  165. key: "cname"
  166. },
  167. {
  168. title: "项目名称",
  169. dataIndex: "pname",
  170. key: "pname"
  171. },
  172. {
  173. title: "负责部门",
  174. dataIndex: "techDepName",
  175. key: "techDepName"
  176. },
  177. {
  178. title: "咨询师/咨询经理",
  179. dataIndex: "techName",
  180. key: "techName"
  181. },
  182. {
  183. title: "下证/授权时间",
  184. dataIndex: "licenceTime",
  185. key: "licenceTime"
  186. },
  187. {
  188. title: "项目金额",
  189. dataIndex: "commodityPrice",
  190. key: "commodityPrice"
  191. },
  192. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  193. {
  194. title: "项目状态",
  195. dataIndex: "projectStatus",
  196. key: "projectStatus",
  197. render:(value)=>{
  198. return (
  199. value === 0 ? '未开始' :
  200. value === 1 ? '已开始' :
  201. value === 2 ? '已暂停' :
  202. value === 3 ? '已完成' :
  203. value === 4 ? '已驳回' :
  204. value === 5 ? '已退单' : ''
  205. )
  206. }
  207. },
  208. {
  209. title: "特别说明",
  210. dataIndex: "specialComment",
  211. key: "specialComment"
  212. },
  213. ];
  214. // 软著
  215. const softWriting = [
  216. {
  217. title: "序号",
  218. dataIndex: "key",
  219. key: "key",
  220. },
  221. {
  222. title: "派单时间",
  223. dataIndex: "distributionTime",
  224. key: "distributionTime"
  225. },
  226. {
  227. title: "派单省份",
  228. dataIndex: "province",
  229. key: "province"
  230. },
  231. {
  232. title: "订单部门",
  233. dataIndex: "depName",
  234. key: "depName"
  235. },
  236. {
  237. title: "营销员",
  238. dataIndex: "salesmanName",
  239. key: "salesmanName"
  240. },
  241. {
  242. title: "合同编号",
  243. dataIndex: "contractNo",
  244. key: "contractNo"
  245. },
  246. {
  247. title: "订单编号",
  248. dataIndex: "orderNo",
  249. key: "orderNo"
  250. },
  251. {
  252. title: "签单客户",
  253. dataIndex: "userName",
  254. key: "userName"
  255. },
  256. {
  257. title: "项目类型",
  258. dataIndex: "cname",
  259. key: "cname"
  260. },
  261. {
  262. title: "项目名称",
  263. dataIndex: "pname",
  264. key: "pname"
  265. },
  266. {
  267. title: "负责部门",
  268. dataIndex: "techDepName",
  269. key: "techDepName"
  270. },
  271. {
  272. title: "咨询师/咨询经理",
  273. dataIndex: "techName",
  274. key: "techName"
  275. },
  276. {
  277. title: "项目数量/下证数",
  278. dataIndex: "commodityQuantity",
  279. key: "commodityQuantity"
  280. },
  281. {
  282. title: "有无材料",
  283. dataIndex: "ifMaterial",
  284. key: "ifMaterial"
  285. },
  286. {
  287. title: "加急天数",
  288. dataIndex: "urgentDay",
  289. key: "urgentDay"
  290. },
  291. {
  292. title: "下证/授权时间",
  293. dataIndex: "licenceTime",
  294. key: "licenceTime"
  295. },
  296. {
  297. title: "证书编号",
  298. dataIndex: "certificateNumber",
  299. key: "certificateNumber"
  300. },
  301. {
  302. title: "项目金额",
  303. dataIndex: "commodityPrice",
  304. key: "commodityPrice"
  305. },
  306. {
  307. title: "成本金额",
  308. dataIndex: "costAmount",
  309. key: "costAmount"
  310. },
  311. {
  312. title: "利润金额",
  313. dataIndex: "profit",
  314. key: "profit"
  315. },
  316. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  317. {
  318. title: "项目状态",
  319. dataIndex: "projectStatus",
  320. key: "projectStatus",
  321. render:(value)=>{
  322. return (
  323. value === 0 ? '未开始' :
  324. value === 1 ? '已开始' :
  325. value === 2 ? '已暂停' :
  326. value === 3 ? '已完成' :
  327. value === 4 ? '已驳回' :
  328. value === 5 ? '已退单' : ''
  329. )
  330. }
  331. },
  332. {
  333. title: "特别说明",
  334. dataIndex: "specialComment",
  335. key: "specialComment"
  336. },
  337. ];
  338. // 专利
  339. const patent =[
  340. {
  341. title: "序号",
  342. dataIndex: "key",
  343. key: "key",
  344. },
  345. {
  346. title: "派单时间",
  347. dataIndex: "distributionTime",
  348. key: "distributionTime"
  349. },
  350. {
  351. title: "派单省份",
  352. dataIndex: "province",
  353. key: "province"
  354. },
  355. {
  356. title: "订单部门",
  357. dataIndex: "depName",
  358. key: "depName"
  359. },
  360. {
  361. title: "营销员",
  362. dataIndex: "salesmanName",
  363. key: "salesmanName"
  364. },
  365. {
  366. title: "合同编号",
  367. dataIndex: "contractNo",
  368. key: "contractNo"
  369. },
  370. {
  371. title: "订单编号",
  372. dataIndex: "orderNo",
  373. key: "orderNo"
  374. },
  375. {
  376. title: "签单客户",
  377. dataIndex: "userName",
  378. key: "userName"
  379. },
  380. {
  381. title: "项目类型",
  382. dataIndex: "cname",
  383. key: "cname"
  384. },
  385. {
  386. title: "项目名称",
  387. dataIndex: "pname",
  388. key: "pname"
  389. },
  390. {
  391. title: "负责部门",
  392. dataIndex: "techDepName",
  393. key: "techDepName"
  394. },
  395. {
  396. title: "咨询师/咨询经理",
  397. dataIndex: "techName",
  398. key: "techName"
  399. },
  400. {
  401. title: "项目数量/下证数",
  402. dataIndex: "commodityQuantity",
  403. key: "commodityQuantity"
  404. },
  405. {
  406. title: "是否高新",
  407. dataIndex: "highTechstatus",
  408. key: "highTechstatus",
  409. },
  410. {
  411. title: "驳回数",
  412. dataIndex: "rejectCount",
  413. key: "rejectCount"
  414. },
  415. {
  416. title: "专利号",
  417. dataIndex: "patentNumber",
  418. key: "patentNumber"
  419. },
  420. {
  421. title: "专利名称",
  422. dataIndex: "patentName",
  423. key: "patentName"
  424. },
  425. {
  426. title: "受理时间",
  427. dataIndex: "acceptTime",
  428. key: "acceptTime"
  429. },
  430. // {
  431. // title: "授权时间",
  432. // dataIndex: "orderNo",
  433. // key: "orderNo"
  434. // },
  435. {
  436. title: "下证/授权时间",
  437. dataIndex: "licenceTime",
  438. key: "licenceTime"
  439. },
  440. {
  441. title: "项目金额",
  442. dataIndex: "commodityPrice",
  443. key: "commodityPrice"
  444. },
  445. {
  446. title: "成本金额",
  447. dataIndex: "costAmount",
  448. key: "costAmount"
  449. },
  450. {
  451. title: "利润金额",
  452. dataIndex: "profit",
  453. key: "profit"
  454. },
  455. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  456. {
  457. title: "项目状态",
  458. dataIndex: "projectStatus",
  459. key: "projectStatus",
  460. render:(value)=>{
  461. return (
  462. value === 0 ? '未开始' :
  463. value === 1 ? '已开始' :
  464. value === 2 ? '已暂停' :
  465. value === 3 ? '已完成' :
  466. value === 4 ? '已驳回' :
  467. value === 5 ? '已退单' : ''
  468. )
  469. }
  470. },
  471. {
  472. title: "特别说明",
  473. dataIndex: "specialComment",
  474. key: "specialComment"
  475. },
  476. ];
  477. // 通用表
  478. const currency = [
  479. {
  480. title: "序号",
  481. dataIndex: "key",
  482. key: "key",
  483. },
  484. {
  485. title: "派单时间",
  486. dataIndex: "distributionTime",
  487. key: "distributionTime"
  488. },
  489. {
  490. title: "派单省份",
  491. dataIndex: "province",
  492. key: "province"
  493. },
  494. {
  495. title: "订单部门",
  496. dataIndex: "depName",
  497. key: "depName"
  498. },
  499. {
  500. title: "营销员",
  501. dataIndex: "salesmanName",
  502. key: "salesmanName"
  503. },
  504. {
  505. title: "合同编号",
  506. dataIndex: "contractNo",
  507. key: "contractNo"
  508. },
  509. {
  510. title: "订单编号",
  511. dataIndex: "orderNo",
  512. key: "orderNo"
  513. },
  514. {
  515. title: "签单客户",
  516. dataIndex: "userName",
  517. key: "userName"
  518. },
  519. {
  520. title: "项目类型",
  521. dataIndex: "cname",
  522. key: "cname"
  523. },
  524. {
  525. title: "项目名称",
  526. dataIndex: "pname",
  527. key: "pname"
  528. },
  529. {
  530. title: "负责部门",
  531. dataIndex: "techDepName",
  532. key: "techDepName"
  533. },
  534. {
  535. title: "咨询师/咨询经理",
  536. dataIndex: "techName",
  537. key: "techName"
  538. },
  539. //0未开始 1已开始 2已暂停 3已完成 4已驳回 5已退单
  540. {
  541. title: "项目状态",
  542. dataIndex: "projectStatus",
  543. key: "projectStatus",
  544. render:(value)=>{
  545. return (
  546. value === 0 ? '未开始' :
  547. value === 1 ? '已开始' :
  548. value === 2 ? '已暂停' :
  549. value === 3 ? '已完成' :
  550. value === 4 ? '已驳回' :
  551. value === 5 ? '已退单' : ''
  552. )
  553. }
  554. },
  555. {
  556. title: "项目金额",
  557. dataIndex: "commodityPrice",
  558. key: "commodityPrice"
  559. },
  560. {
  561. title: "特别说明",
  562. dataIndex: "specialComment",
  563. key: "specialComment"
  564. },
  565. ];
  566. export {
  567. highTechColumns,
  568. doubleSoft,
  569. softWriting,
  570. patent,
  571. currency,
  572. }