highTechConfig.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899
  1. import { Tooltip } from 'antd';
  2. import React from 'react';
  3. import { getProjectName } from '@/tools';
  4. // 高新会员服务
  5. const member = [
  6. {
  7. title: "序号",
  8. dataIndex: "key",
  9. key: "key",
  10. isNoD: true,
  11. },
  12. {
  13. title: "派单时间",
  14. dataIndex: "distributionTime",
  15. key: "distributionTime",
  16. width: 80,
  17. },
  18. {
  19. title: "派单省份",
  20. dataIndex: "province",
  21. key: "province"
  22. },
  23. {
  24. title: "订单部门",
  25. dataIndex: "depName",
  26. key: "depName",
  27. isNoD: true,
  28. },
  29. {
  30. title: "营销员",
  31. dataIndex: "salesmanName",
  32. key: "salesmanName"
  33. },
  34. {
  35. title: "合同编号",
  36. dataIndex: "contractNo",
  37. key: "contractNo"
  38. },
  39. {
  40. title: "订单编号",
  41. dataIndex: "orderNo",
  42. key: "orderNo",
  43. isNoD: true,
  44. },
  45. {
  46. title: "签单客户",
  47. dataIndex: "userName",
  48. key: "userName"
  49. },
  50. {
  51. title: "项目类型",
  52. dataIndex: "cname",
  53. key: "cname"
  54. },
  55. {
  56. title: "项目名称",
  57. dataIndex: "pname",
  58. key: "pname"
  59. },
  60. {
  61. title: "数量",
  62. dataIndex: "commodityQuantity",
  63. key: "commodityQuantity"
  64. },
  65. {
  66. title: "负责部门",
  67. dataIndex: "techDepName",
  68. key: "techDepName",
  69. isNoD: true,
  70. },
  71. {
  72. title: "咨询师/咨询经理",
  73. dataIndex: "techName",
  74. key: "techName"
  75. },
  76. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  77. {
  78. title: "项目状态",
  79. dataIndex: "projectStatus",
  80. key: "projectStatus",
  81. render: (value) => (
  82. getProjectName(value)
  83. )
  84. },
  85. {
  86. title: "项目金额",
  87. dataIndex: "commodityPrice",
  88. key: "commodityPrice"
  89. },
  90. {
  91. title: "总年限",
  92. dataIndex: "yearsum",
  93. key: "yearsum",
  94. render: (text, record) => {
  95. return (
  96. <div>{["", "一年", "二年", "三年", "四年", "五年"][text]}</div>
  97. );
  98. }
  99. },
  100. {
  101. title: "年限",
  102. dataIndex: "serviceLife",
  103. key: "serviceLife",
  104. render: (text, record) => {
  105. return (
  106. <div>{!!text && JSON.parse(text).toString()}</div>
  107. );
  108. }
  109. },
  110. {
  111. title: "本次派单",
  112. dataIndex: "serviceYear",
  113. key: "serviceYear"
  114. },
  115. {
  116. title: "合同期",
  117. dataIndex: "contractTerm",
  118. key: "contractTerm",
  119. width: 80,
  120. render: (text, record) => {
  121. let data = !!text ? JSON.parse(text) : [""]
  122. return (
  123. data.length <= 1
  124. ? data[0]
  125. : <div>
  126. <div>{data[0]}</div>
  127. <div style={{ textAlign: "center" }}>至</div>
  128. <div>{data[1]}</div>
  129. </div>
  130. );
  131. }
  132. },
  133. {
  134. title: "项目说明",
  135. dataIndex: "taskComment",
  136. key: "taskComment",
  137. width: 300,
  138. },
  139. {
  140. title: "特别说明",
  141. dataIndex: "specialComment",
  142. key: "specialComment",
  143. isNoD: true,
  144. },
  145. {
  146. title: "订单说明",
  147. dataIndex: "orderRemarks",
  148. key: "orderRemarks",
  149. isNoD: true,
  150. }
  151. ];
  152. // 高新
  153. const highTechColumns = [
  154. {
  155. title: "序号",
  156. dataIndex: "key",
  157. key: "key",
  158. isNoD: true,
  159. },
  160. {
  161. title: "派单时间",
  162. dataIndex: "distributionTime",
  163. key: "distributionTime"
  164. },
  165. {
  166. title: "派单省份",
  167. dataIndex: "province",
  168. key: "province"
  169. },
  170. {
  171. title: "订单部门",
  172. dataIndex: "depName",
  173. key: "depName",
  174. isNoD: true,
  175. },
  176. {
  177. title: "营销员",
  178. dataIndex: "salesmanName",
  179. key: "salesmanName"
  180. },
  181. {
  182. title: "合同编号",
  183. dataIndex: "contractNo",
  184. key: "contractNo"
  185. },
  186. {
  187. title: "订单编号",
  188. dataIndex: "orderNo",
  189. key: "orderNo"
  190. },
  191. {
  192. title: "签单客户",
  193. dataIndex: "userName",
  194. key: "userName"
  195. },
  196. {
  197. title: "项目类型",
  198. dataIndex: "cname",
  199. key: "cname"
  200. },
  201. {
  202. title: "项目名称",
  203. dataIndex: "pname",
  204. key: "pname"
  205. },
  206. {
  207. title: "数量",
  208. dataIndex: "commodityQuantity",
  209. key: "commodityQuantity"
  210. },
  211. {
  212. title: "负责部门",
  213. dataIndex: "techDepName",
  214. key: "techDepName",
  215. isNoD: true,
  216. },
  217. {
  218. title: "咨询师/咨询经理",
  219. dataIndex: "techName",
  220. key: "techName"
  221. },
  222. {
  223. title: "是否立项/时间",
  224. dataIndex: "setUpStatus",
  225. key: "setUpStatus",
  226. render: (value, record) => (
  227. value === 1 ? '是' + '/' + record.setUpTime : value === 0 ? '否' : ''
  228. )
  229. },
  230. {
  231. title: "是否抽查",
  232. dataIndex: "spotCheckStatus",
  233. key: "spotCheckStatus",
  234. render: (value) => (
  235. value === 1 ? '是' : value === 0 ? '否' : ''
  236. )
  237. },
  238. {
  239. title: "联系人电话",
  240. dataIndex: "contactMobile",
  241. key: "contactMobile"
  242. },
  243. {
  244. title: "法人电话",
  245. dataIndex: "legalPersonTel",
  246. key: "legalPersonTel"
  247. },
  248. {
  249. title: "证书编号",
  250. dataIndex: "certificateNumber",
  251. key: "certificateNumber"
  252. },
  253. {
  254. title: "申报年份",
  255. dataIndex: "serviceYear",
  256. key: "serviceYear"
  257. },
  258. {
  259. title: "申报批次",
  260. dataIndex: "declarationBatch",
  261. key: "declarationBatch"
  262. },
  263. {
  264. title: "项目金额",
  265. dataIndex: "commodityPrice",
  266. key: "commodityPrice"
  267. },
  268. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  269. {
  270. title: "项目状态",
  271. dataIndex: "projectStatus",
  272. key: "projectStatus",
  273. render: (value) => (
  274. getProjectName(value)
  275. )
  276. },
  277. {
  278. title: "项目说明",
  279. dataIndex: "taskComment",
  280. key: "taskComment",
  281. width: 300,
  282. // render: (v) => (
  283. // <Tooltip placement="topRight" title={v} overlayStyle={{
  284. // wordBreak: 'break-all'
  285. // }}>
  286. // <div style={{
  287. // maxWidth: '120px',
  288. // overflow: "hidden",
  289. // textOverflow: "ellipsis",
  290. // whiteSpace: "nowrap",
  291. // }}>{v}</div>
  292. // </Tooltip>
  293. // )
  294. },
  295. {
  296. title: "特别说明",
  297. dataIndex: "specialComment",
  298. key: "specialComment",
  299. isNoD: true,
  300. },
  301. {
  302. title: "订单说明",
  303. dataIndex: "orderRemarks",
  304. key: "orderRemarks",
  305. isNoD: true,
  306. }
  307. ];
  308. // 双软
  309. const doubleSoft = [
  310. {
  311. title: "序号",
  312. dataIndex: "key",
  313. key: "key",
  314. isNoD: true,
  315. },
  316. {
  317. title: "派单时间",
  318. dataIndex: "distributionTime",
  319. key: "distributionTime"
  320. },
  321. {
  322. title: "派单省份",
  323. dataIndex: "province",
  324. key: "province"
  325. },
  326. {
  327. title: "订单部门",
  328. dataIndex: "depName",
  329. key: "depName",
  330. isNoD: true,
  331. },
  332. {
  333. title: "营销员",
  334. dataIndex: "salesmanName",
  335. key: "salesmanName"
  336. },
  337. {
  338. title: "合同编号",
  339. dataIndex: "contractNo",
  340. key: "contractNo"
  341. },
  342. {
  343. title: "订单编号",
  344. dataIndex: "orderNo",
  345. key: "orderNo"
  346. },
  347. {
  348. title: "签单客户",
  349. dataIndex: "userName",
  350. key: "userName"
  351. },
  352. {
  353. title: "项目类型",
  354. dataIndex: "cname",
  355. key: "cname"
  356. },
  357. {
  358. title: "项目名称",
  359. dataIndex: "pname",
  360. key: "pname"
  361. },
  362. {
  363. title: "数量",
  364. dataIndex: "commodityQuantity",
  365. key: "commodityQuantity"
  366. },
  367. {
  368. title: "负责部门",
  369. dataIndex: "techDepName",
  370. key: "techDepName",
  371. isNoD: true,
  372. },
  373. {
  374. title: "咨询师/咨询经理",
  375. dataIndex: "techName",
  376. key: "techName"
  377. },
  378. {
  379. title: "下证时间",
  380. dataIndex: "licenceTime",
  381. key: "licenceTime",
  382. render: (value) => (
  383. <div style={{ width: '80px' }}>{value}</div>
  384. )
  385. },
  386. {
  387. title: "项目金额",
  388. dataIndex: "commodityPrice",
  389. key: "commodityPrice"
  390. },
  391. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  392. {
  393. title: "项目状态",
  394. dataIndex: "projectStatus",
  395. key: "projectStatus",
  396. render: (value) => (
  397. getProjectName(value)
  398. )
  399. },
  400. {
  401. title: "项目说明",
  402. dataIndex: "taskComment",
  403. key: "taskComment",
  404. width: 300,
  405. // render: (v) => (
  406. // <Tooltip placement="topRight" title={v} overlayStyle={{
  407. // wordBreak: 'break-all'
  408. // }}>
  409. // <div style={{
  410. // maxWidth: '120px',
  411. // overflow: "hidden",
  412. // textOverflow: "ellipsis",
  413. // whiteSpace: "nowrap",
  414. // }}>{v}</div>
  415. // </Tooltip>
  416. // )
  417. },
  418. {
  419. title: "特别说明",
  420. dataIndex: "specialComment",
  421. key: "specialComment",
  422. isNoD: true,
  423. },
  424. {
  425. title: "订单说明",
  426. dataIndex: "orderRemarks",
  427. key: "orderRemarks",
  428. isNoD: true,
  429. }
  430. ];
  431. // 软著
  432. const softWriting = [
  433. {
  434. title: "序号",
  435. dataIndex: "key",
  436. key: "key",
  437. isNoD: true,
  438. },
  439. {
  440. title: "派单时间",
  441. dataIndex: "distributionTime",
  442. key: "distributionTime"
  443. },
  444. {
  445. title: "派单省份",
  446. dataIndex: "province",
  447. key: "province"
  448. },
  449. {
  450. title: "订单部门",
  451. dataIndex: "depName",
  452. key: "depName",
  453. isNoD: true,
  454. },
  455. {
  456. title: "营销员",
  457. dataIndex: "salesmanName",
  458. key: "salesmanName"
  459. },
  460. {
  461. title: "合同编号",
  462. dataIndex: "contractNo",
  463. key: "contractNo"
  464. },
  465. {
  466. title: "订单编号",
  467. dataIndex: "orderNo",
  468. key: "orderNo"
  469. },
  470. {
  471. title: "签单客户",
  472. dataIndex: "userName",
  473. key: "userName"
  474. },
  475. {
  476. title: "项目类型",
  477. dataIndex: "cname",
  478. key: "cname"
  479. },
  480. {
  481. title: "项目名称",
  482. dataIndex: "pname",
  483. key: "pname"
  484. },
  485. {
  486. title: "负责部门",
  487. dataIndex: "techDepName",
  488. key: "techDepName",
  489. isNoD: true,
  490. },
  491. {
  492. title: "咨询师/咨询经理",
  493. dataIndex: "techName",
  494. key: "techName"
  495. },
  496. {
  497. title: "项目数量/下证数",
  498. dataIndex: "commodityQuantity",
  499. key: "commodityQuantity",
  500. render: (value, record) => (
  501. value + '/' + record.certificatesCount
  502. )
  503. },
  504. {
  505. title: "有无材料",
  506. dataIndex: "ifMaterial",
  507. key: "ifMaterial",
  508. render: (value) => (
  509. value === 1 ? '有' : value === 0 ? '无' : ''
  510. )
  511. },
  512. {
  513. title: "加急天数",
  514. dataIndex: "urgentDay",
  515. key: "urgentDay",
  516. render: (value) => (
  517. value === 1 ? '有' : value === 0 ? '无' : ''
  518. )
  519. },
  520. {
  521. title: "下证时间",
  522. dataIndex: "licenceTime",
  523. key: "licenceTime",
  524. render: (value) => (
  525. <div style={{ width: '80px' }}>{value}</div>
  526. )
  527. },
  528. {
  529. title: "证书编号",
  530. dataIndex: "certificateNumber",
  531. key: "certificateNumber"
  532. },
  533. {
  534. title: "项目金额",
  535. dataIndex: "commodityPrice",
  536. key: "commodityPrice"
  537. },
  538. {
  539. title: "成本金额",
  540. dataIndex: "costAmount",
  541. key: "costAmount"
  542. },
  543. {
  544. title: "利润金额",
  545. dataIndex: "profit",
  546. key: "profit"
  547. },
  548. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  549. {
  550. title: "项目状态",
  551. dataIndex: "projectStatus",
  552. key: "projectStatus",
  553. render: (value) => (
  554. getProjectName(value)
  555. )
  556. },
  557. {
  558. title: "项目说明",
  559. dataIndex: "taskComment",
  560. key: "taskComment",
  561. width: 300,
  562. // render: (v) => (
  563. // <Tooltip placement="topRight" title={v} overlayStyle={{
  564. // wordBreak: 'break-all'
  565. // }}>
  566. // <div style={{
  567. // maxWidth: '120px',
  568. // overflow: "hidden",
  569. // textOverflow: "ellipsis",
  570. // whiteSpace: "nowrap",
  571. // }}>{v}</div>
  572. // </Tooltip>
  573. // )
  574. },
  575. {
  576. title: "特别说明",
  577. dataIndex: "specialComment",
  578. key: "specialComment",
  579. isNoD: true,
  580. },
  581. {
  582. title: "订单说明",
  583. dataIndex: "orderRemarks",
  584. key: "orderRemarks",
  585. isNoD: true,
  586. }
  587. ];
  588. // 专利
  589. const patent = [
  590. {
  591. title: "序号",
  592. dataIndex: "key",
  593. key: "key",
  594. isNoD: true,
  595. },
  596. {
  597. title: "派单时间",
  598. dataIndex: "distributionTime",
  599. key: "distributionTime"
  600. },
  601. {
  602. title: "派单省份",
  603. dataIndex: "province",
  604. key: "province"
  605. },
  606. {
  607. title: "订单部门",
  608. dataIndex: "depName",
  609. key: "depName",
  610. isNoD: true,
  611. },
  612. {
  613. title: "营销员",
  614. dataIndex: "salesmanName",
  615. key: "salesmanName"
  616. },
  617. {
  618. title: "合同编号",
  619. dataIndex: "contractNo",
  620. key: "contractNo"
  621. },
  622. {
  623. title: "订单编号",
  624. dataIndex: "orderNo",
  625. key: "orderNo"
  626. },
  627. {
  628. title: "签单客户",
  629. dataIndex: "userName",
  630. key: "userName"
  631. },
  632. {
  633. title: "项目类型",
  634. dataIndex: "cname",
  635. key: "cname"
  636. },
  637. {
  638. title: "项目名称",
  639. dataIndex: "pname",
  640. key: "pname"
  641. },
  642. {
  643. title: "负责部门",
  644. dataIndex: "techDepName",
  645. key: "techDepName",
  646. isNoD: true,
  647. },
  648. {
  649. title: "咨询师/咨询经理",
  650. dataIndex: "techName",
  651. key: "techName"
  652. },
  653. {
  654. title: "项目数量/下证数",
  655. dataIndex: "commodityQuantity",
  656. key: "commodityQuantity",
  657. render: (value, record) => (
  658. value + '/' + record.certificatesCount
  659. )
  660. },
  661. {
  662. title: "是否高新",
  663. dataIndex: "highTechstatus",
  664. key: "highTechstatus",
  665. render: (value) => (
  666. value === 1 ? '是' : value === 0 ? '否' : ''
  667. )
  668. },
  669. {
  670. title: "驳回数",
  671. dataIndex: "rejectCount",
  672. key: "rejectCount"
  673. },
  674. {
  675. title: "专利号",
  676. dataIndex: "patentNo",
  677. key: "patentNo"
  678. },
  679. {
  680. title: "专利名称",
  681. dataIndex: "patentName",
  682. key: "patentName"
  683. },
  684. {
  685. title: "受理时间",
  686. dataIndex: "acceptTime",
  687. key: "acceptTime"
  688. },
  689. // {
  690. // title: "授权时间",
  691. // dataIndex: "orderNo",
  692. // key: "orderNo"
  693. // },
  694. {
  695. title: "下证时间",
  696. dataIndex: "licenceTime",
  697. key: "licenceTime",
  698. render: (value) => (
  699. <div style={{ width: '80px' }}>{value}</div>
  700. )
  701. },
  702. {
  703. title: "项目金额",
  704. dataIndex: "commodityPrice",
  705. key: "commodityPrice"
  706. },
  707. {
  708. title: "成本金额",
  709. dataIndex: "costAmount",
  710. key: "costAmount"
  711. },
  712. {
  713. title: "利润金额",
  714. dataIndex: "profit",
  715. key: "profit"
  716. },
  717. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  718. {
  719. title: "项目状态",
  720. dataIndex: "projectStatus",
  721. key: "projectStatus",
  722. render: (value) => (
  723. getProjectName(value)
  724. )
  725. },
  726. {
  727. title: "项目说明",
  728. dataIndex: "taskComment",
  729. key: "taskComment",
  730. width: 300,
  731. // render: (v) => (
  732. // <Tooltip placement="topRight" title={v} overlayStyle={{
  733. // wordBreak: 'break-all'
  734. // }}>
  735. // <div style={{
  736. // maxWidth: '120px',
  737. // overflow: "hidden",
  738. // textOverflow: "ellipsis",
  739. // whiteSpace: "nowrap",
  740. // }}>{v}</div>
  741. // </Tooltip>
  742. // )
  743. },
  744. {
  745. title: "特别说明",
  746. dataIndex: "specialComment",
  747. key: "specialComment",
  748. isNoD: true,
  749. },
  750. {
  751. title: "订单说明",
  752. dataIndex: "orderRemarks",
  753. key: "orderRemarks",
  754. isNoD: true,
  755. }
  756. ];
  757. // 通用表
  758. const currency = [
  759. {
  760. title: "序号",
  761. dataIndex: "key",
  762. key: "key",
  763. isNoD: true,
  764. },
  765. {
  766. title: "派单时间",
  767. dataIndex: "distributionTime",
  768. key: "distributionTime",
  769. width: 80,
  770. },
  771. {
  772. title: "派单省份",
  773. dataIndex: "province",
  774. key: "province"
  775. },
  776. {
  777. title: "订单部门",
  778. dataIndex: "depName",
  779. key: "depName",
  780. isNoD: true,
  781. },
  782. {
  783. title: "营销员",
  784. dataIndex: "salesmanName",
  785. key: "salesmanName"
  786. },
  787. {
  788. title: "合同编号",
  789. dataIndex: "contractNo",
  790. key: "contractNo"
  791. },
  792. {
  793. title: "订单编号",
  794. dataIndex: "orderNo",
  795. key: "orderNo"
  796. },
  797. {
  798. title: "签单客户",
  799. dataIndex: "userName",
  800. key: "userName"
  801. },
  802. {
  803. title: "项目类型",
  804. dataIndex: "cname",
  805. key: "cname"
  806. },
  807. {
  808. title: "项目名称",
  809. dataIndex: "pname",
  810. key: "pname"
  811. },
  812. {
  813. title: "数量",
  814. dataIndex: "commodityQuantity",
  815. key: "commodityQuantity"
  816. },
  817. {
  818. title: "负责部门",
  819. dataIndex: "techDepName",
  820. key: "techDepName",
  821. isNoD: true,
  822. },
  823. {
  824. title: "咨询师/咨询经理",
  825. dataIndex: "techName",
  826. key: "techName"
  827. },
  828. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  829. {
  830. title: "项目状态",
  831. dataIndex: "projectStatus",
  832. key: "projectStatus",
  833. render: (value) => (
  834. getProjectName(value)
  835. )
  836. },
  837. {
  838. title: "项目金额",
  839. dataIndex: "commodityPrice",
  840. key: "commodityPrice"
  841. },
  842. // {
  843. // title: "服务年限",
  844. // dataIndex: "serviceLife",
  845. // key: "serviceLife",
  846. // render: (text, record) => {
  847. // return (
  848. // <div>{!!text && JSON.parse(text).toString()}</div>
  849. // );
  850. // }
  851. // },
  852. {
  853. title: "项目说明",
  854. dataIndex: "taskComment",
  855. key: "taskComment",
  856. width: 300,
  857. // render: (v) => (
  858. // <Tooltip placement="topRight" title={v} overlayStyle={{
  859. // wordBreak: 'break-all'
  860. // }}>
  861. // <div style={{
  862. // maxWidth: '120px',
  863. // overflow: "hidden",
  864. // textOverflow: "ellipsis",
  865. // whiteSpace: "nowrap",
  866. // }}>{v}</div>
  867. // </Tooltip>
  868. // )
  869. },
  870. {
  871. title: "特别说明",
  872. dataIndex: "specialComment",
  873. key: "specialComment",
  874. isNoD: true,
  875. },
  876. {
  877. title: "订单说明",
  878. dataIndex: "orderRemarks",
  879. key: "orderRemarks",
  880. isNoD: true,
  881. }
  882. ];
  883. export {
  884. member,
  885. highTechColumns,
  886. doubleSoft,
  887. softWriting,
  888. patent,
  889. currency,
  890. }