highTechConfig.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  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: 200,
  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. // render: (v) => (
  282. // <Tooltip placement="topRight" title={v} overlayStyle={{
  283. // wordBreak: 'break-all'
  284. // }}>
  285. // <div style={{
  286. // maxWidth: '120px',
  287. // overflow: "hidden",
  288. // textOverflow: "ellipsis",
  289. // whiteSpace: "nowrap",
  290. // }}>{v}</div>
  291. // </Tooltip>
  292. // )
  293. },
  294. {
  295. title: "特别说明",
  296. dataIndex: "specialComment",
  297. key: "specialComment",
  298. isNoD: true,
  299. },
  300. {
  301. title: "订单说明",
  302. dataIndex: "orderRemarks",
  303. key: "orderRemarks",
  304. isNoD: true,
  305. }
  306. ];
  307. // 双软
  308. const doubleSoft = [
  309. {
  310. title: "序号",
  311. dataIndex: "key",
  312. key: "key",
  313. isNoD: true,
  314. },
  315. {
  316. title: "派单时间",
  317. dataIndex: "distributionTime",
  318. key: "distributionTime"
  319. },
  320. {
  321. title: "派单省份",
  322. dataIndex: "province",
  323. key: "province"
  324. },
  325. {
  326. title: "订单部门",
  327. dataIndex: "depName",
  328. key: "depName",
  329. isNoD: true,
  330. },
  331. {
  332. title: "营销员",
  333. dataIndex: "salesmanName",
  334. key: "salesmanName"
  335. },
  336. {
  337. title: "合同编号",
  338. dataIndex: "contractNo",
  339. key: "contractNo"
  340. },
  341. {
  342. title: "订单编号",
  343. dataIndex: "orderNo",
  344. key: "orderNo"
  345. },
  346. {
  347. title: "签单客户",
  348. dataIndex: "userName",
  349. key: "userName"
  350. },
  351. {
  352. title: "项目类型",
  353. dataIndex: "cname",
  354. key: "cname"
  355. },
  356. {
  357. title: "项目名称",
  358. dataIndex: "pname",
  359. key: "pname"
  360. },
  361. {
  362. title: "数量",
  363. dataIndex: "commodityQuantity",
  364. key: "commodityQuantity"
  365. },
  366. {
  367. title: "负责部门",
  368. dataIndex: "techDepName",
  369. key: "techDepName",
  370. isNoD: true,
  371. },
  372. {
  373. title: "咨询师/咨询经理",
  374. dataIndex: "techName",
  375. key: "techName"
  376. },
  377. {
  378. title: "下证时间",
  379. dataIndex: "licenceTime",
  380. key: "licenceTime",
  381. render: (value) => (
  382. <div style={{ width: '80px' }}>{value}</div>
  383. )
  384. },
  385. {
  386. title: "项目金额",
  387. dataIndex: "commodityPrice",
  388. key: "commodityPrice"
  389. },
  390. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  391. {
  392. title: "项目状态",
  393. dataIndex: "projectStatus",
  394. key: "projectStatus",
  395. render: (value) => (
  396. getProjectName(value)
  397. )
  398. },
  399. {
  400. title: "项目说明",
  401. dataIndex: "taskComment",
  402. key: "taskComment",
  403. // render: (v) => (
  404. // <Tooltip placement="topRight" title={v} overlayStyle={{
  405. // wordBreak: 'break-all'
  406. // }}>
  407. // <div style={{
  408. // maxWidth: '120px',
  409. // overflow: "hidden",
  410. // textOverflow: "ellipsis",
  411. // whiteSpace: "nowrap",
  412. // }}>{v}</div>
  413. // </Tooltip>
  414. // )
  415. },
  416. {
  417. title: "特别说明",
  418. dataIndex: "specialComment",
  419. key: "specialComment",
  420. isNoD: true,
  421. },
  422. {
  423. title: "订单说明",
  424. dataIndex: "orderRemarks",
  425. key: "orderRemarks",
  426. isNoD: true,
  427. }
  428. ];
  429. // 软著
  430. const softWriting = [
  431. {
  432. title: "序号",
  433. dataIndex: "key",
  434. key: "key",
  435. isNoD: true,
  436. },
  437. {
  438. title: "派单时间",
  439. dataIndex: "distributionTime",
  440. key: "distributionTime"
  441. },
  442. {
  443. title: "派单省份",
  444. dataIndex: "province",
  445. key: "province"
  446. },
  447. {
  448. title: "订单部门",
  449. dataIndex: "depName",
  450. key: "depName",
  451. isNoD: true,
  452. },
  453. {
  454. title: "营销员",
  455. dataIndex: "salesmanName",
  456. key: "salesmanName"
  457. },
  458. {
  459. title: "合同编号",
  460. dataIndex: "contractNo",
  461. key: "contractNo"
  462. },
  463. {
  464. title: "订单编号",
  465. dataIndex: "orderNo",
  466. key: "orderNo"
  467. },
  468. {
  469. title: "签单客户",
  470. dataIndex: "userName",
  471. key: "userName"
  472. },
  473. {
  474. title: "项目类型",
  475. dataIndex: "cname",
  476. key: "cname"
  477. },
  478. {
  479. title: "项目名称",
  480. dataIndex: "pname",
  481. key: "pname"
  482. },
  483. {
  484. title: "负责部门",
  485. dataIndex: "techDepName",
  486. key: "techDepName",
  487. isNoD: true,
  488. },
  489. {
  490. title: "咨询师/咨询经理",
  491. dataIndex: "techName",
  492. key: "techName"
  493. },
  494. {
  495. title: "项目数量/下证数",
  496. dataIndex: "commodityQuantity",
  497. key: "commodityQuantity",
  498. render: (value, record) => (
  499. value + '/' + record.certificatesCount
  500. )
  501. },
  502. {
  503. title: "有无材料",
  504. dataIndex: "ifMaterial",
  505. key: "ifMaterial",
  506. render: (value) => (
  507. value === 1 ? '有' : value === 0 ? '无' : ''
  508. )
  509. },
  510. {
  511. title: "加急天数",
  512. dataIndex: "urgentDay",
  513. key: "urgentDay",
  514. render: (value) => (
  515. value === 1 ? '有' : value === 0 ? '无' : ''
  516. )
  517. },
  518. {
  519. title: "下证时间",
  520. dataIndex: "licenceTime",
  521. key: "licenceTime",
  522. render: (value) => (
  523. <div style={{ width: '80px' }}>{value}</div>
  524. )
  525. },
  526. {
  527. title: "证书编号",
  528. dataIndex: "certificateNumber",
  529. key: "certificateNumber"
  530. },
  531. {
  532. title: "项目金额",
  533. dataIndex: "commodityPrice",
  534. key: "commodityPrice"
  535. },
  536. {
  537. title: "成本金额",
  538. dataIndex: "costAmount",
  539. key: "costAmount"
  540. },
  541. {
  542. title: "利润金额",
  543. dataIndex: "profit",
  544. key: "profit"
  545. },
  546. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  547. {
  548. title: "项目状态",
  549. dataIndex: "projectStatus",
  550. key: "projectStatus",
  551. render: (value) => (
  552. getProjectName(value)
  553. )
  554. },
  555. {
  556. title: "项目说明",
  557. dataIndex: "taskComment",
  558. key: "taskComment",
  559. // render: (v) => (
  560. // <Tooltip placement="topRight" title={v} overlayStyle={{
  561. // wordBreak: 'break-all'
  562. // }}>
  563. // <div style={{
  564. // maxWidth: '120px',
  565. // overflow: "hidden",
  566. // textOverflow: "ellipsis",
  567. // whiteSpace: "nowrap",
  568. // }}>{v}</div>
  569. // </Tooltip>
  570. // )
  571. },
  572. {
  573. title: "特别说明",
  574. dataIndex: "specialComment",
  575. key: "specialComment",
  576. isNoD: true,
  577. },
  578. {
  579. title: "订单说明",
  580. dataIndex: "orderRemarks",
  581. key: "orderRemarks",
  582. isNoD: true,
  583. }
  584. ];
  585. // 专利
  586. const patent = [
  587. {
  588. title: "序号",
  589. dataIndex: "key",
  590. key: "key",
  591. isNoD: true,
  592. },
  593. {
  594. title: "派单时间",
  595. dataIndex: "distributionTime",
  596. key: "distributionTime"
  597. },
  598. {
  599. title: "派单省份",
  600. dataIndex: "province",
  601. key: "province"
  602. },
  603. {
  604. title: "订单部门",
  605. dataIndex: "depName",
  606. key: "depName",
  607. isNoD: true,
  608. },
  609. {
  610. title: "营销员",
  611. dataIndex: "salesmanName",
  612. key: "salesmanName"
  613. },
  614. {
  615. title: "合同编号",
  616. dataIndex: "contractNo",
  617. key: "contractNo"
  618. },
  619. {
  620. title: "订单编号",
  621. dataIndex: "orderNo",
  622. key: "orderNo"
  623. },
  624. {
  625. title: "签单客户",
  626. dataIndex: "userName",
  627. key: "userName"
  628. },
  629. {
  630. title: "项目类型",
  631. dataIndex: "cname",
  632. key: "cname"
  633. },
  634. {
  635. title: "项目名称",
  636. dataIndex: "pname",
  637. key: "pname"
  638. },
  639. {
  640. title: "负责部门",
  641. dataIndex: "techDepName",
  642. key: "techDepName",
  643. isNoD: true,
  644. },
  645. {
  646. title: "咨询师/咨询经理",
  647. dataIndex: "techName",
  648. key: "techName"
  649. },
  650. {
  651. title: "项目数量/下证数",
  652. dataIndex: "commodityQuantity",
  653. key: "commodityQuantity",
  654. render: (value, record) => (
  655. value + '/' + record.certificatesCount
  656. )
  657. },
  658. {
  659. title: "是否高新",
  660. dataIndex: "highTechstatus",
  661. key: "highTechstatus",
  662. render: (value) => (
  663. value === 1 ? '是' : value === 0 ? '否' : ''
  664. )
  665. },
  666. {
  667. title: "驳回数",
  668. dataIndex: "rejectCount",
  669. key: "rejectCount"
  670. },
  671. {
  672. title: "专利号",
  673. dataIndex: "patentNo",
  674. key: "patentNo"
  675. },
  676. {
  677. title: "专利名称",
  678. dataIndex: "patentName",
  679. key: "patentName"
  680. },
  681. {
  682. title: "受理时间",
  683. dataIndex: "acceptTime",
  684. key: "acceptTime"
  685. },
  686. // {
  687. // title: "授权时间",
  688. // dataIndex: "orderNo",
  689. // key: "orderNo"
  690. // },
  691. {
  692. title: "下证时间",
  693. dataIndex: "licenceTime",
  694. key: "licenceTime",
  695. render: (value) => (
  696. <div style={{ width: '80px' }}>{value}</div>
  697. )
  698. },
  699. {
  700. title: "项目金额",
  701. dataIndex: "commodityPrice",
  702. key: "commodityPrice"
  703. },
  704. {
  705. title: "成本金额",
  706. dataIndex: "costAmount",
  707. key: "costAmount"
  708. },
  709. {
  710. title: "利润金额",
  711. dataIndex: "profit",
  712. key: "profit"
  713. },
  714. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  715. {
  716. title: "项目状态",
  717. dataIndex: "projectStatus",
  718. key: "projectStatus",
  719. render: (value) => (
  720. getProjectName(value)
  721. )
  722. },
  723. {
  724. title: "项目说明",
  725. dataIndex: "taskComment",
  726. key: "taskComment",
  727. // render: (v) => (
  728. // <Tooltip placement="topRight" title={v} overlayStyle={{
  729. // wordBreak: 'break-all'
  730. // }}>
  731. // <div style={{
  732. // maxWidth: '120px',
  733. // overflow: "hidden",
  734. // textOverflow: "ellipsis",
  735. // whiteSpace: "nowrap",
  736. // }}>{v}</div>
  737. // </Tooltip>
  738. // )
  739. },
  740. {
  741. title: "特别说明",
  742. dataIndex: "specialComment",
  743. key: "specialComment",
  744. isNoD: true,
  745. },
  746. {
  747. title: "订单说明",
  748. dataIndex: "orderRemarks",
  749. key: "orderRemarks",
  750. isNoD: true,
  751. }
  752. ];
  753. // 通用表
  754. const currency = [
  755. {
  756. title: "序号",
  757. dataIndex: "key",
  758. key: "key",
  759. isNoD: true,
  760. },
  761. {
  762. title: "派单时间",
  763. dataIndex: "distributionTime",
  764. key: "distributionTime",
  765. width: 80,
  766. },
  767. {
  768. title: "派单省份",
  769. dataIndex: "province",
  770. key: "province"
  771. },
  772. {
  773. title: "订单部门",
  774. dataIndex: "depName",
  775. key: "depName",
  776. isNoD: true,
  777. },
  778. {
  779. title: "营销员",
  780. dataIndex: "salesmanName",
  781. key: "salesmanName"
  782. },
  783. {
  784. title: "合同编号",
  785. dataIndex: "contractNo",
  786. key: "contractNo"
  787. },
  788. {
  789. title: "订单编号",
  790. dataIndex: "orderNo",
  791. key: "orderNo"
  792. },
  793. {
  794. title: "签单客户",
  795. dataIndex: "userName",
  796. key: "userName"
  797. },
  798. {
  799. title: "项目类型",
  800. dataIndex: "cname",
  801. key: "cname"
  802. },
  803. {
  804. title: "项目名称",
  805. dataIndex: "pname",
  806. key: "pname"
  807. },
  808. {
  809. title: "数量",
  810. dataIndex: "commodityQuantity",
  811. key: "commodityQuantity"
  812. },
  813. {
  814. title: "负责部门",
  815. dataIndex: "techDepName",
  816. key: "techDepName",
  817. isNoD: true,
  818. },
  819. {
  820. title: "咨询师/咨询经理",
  821. dataIndex: "techName",
  822. key: "techName"
  823. },
  824. //0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  825. {
  826. title: "项目状态",
  827. dataIndex: "projectStatus",
  828. key: "projectStatus",
  829. render: (value) => (
  830. getProjectName(value)
  831. )
  832. },
  833. {
  834. title: "项目金额",
  835. dataIndex: "commodityPrice",
  836. key: "commodityPrice"
  837. },
  838. // {
  839. // title: "服务年限",
  840. // dataIndex: "serviceLife",
  841. // key: "serviceLife",
  842. // render: (text, record) => {
  843. // return (
  844. // <div>{!!text && JSON.parse(text).toString()}</div>
  845. // );
  846. // }
  847. // },
  848. {
  849. title: "项目说明",
  850. dataIndex: "taskComment",
  851. key: "taskComment",
  852. width: 300,
  853. // render: (v) => (
  854. // <Tooltip placement="topRight" title={v} overlayStyle={{
  855. // wordBreak: 'break-all'
  856. // }}>
  857. // <div style={{
  858. // maxWidth: '120px',
  859. // overflow: "hidden",
  860. // textOverflow: "ellipsis",
  861. // whiteSpace: "nowrap",
  862. // }}>{v}</div>
  863. // </Tooltip>
  864. // )
  865. },
  866. {
  867. title: "特别说明",
  868. dataIndex: "specialComment",
  869. key: "specialComment",
  870. isNoD: true,
  871. },
  872. {
  873. title: "订单说明",
  874. dataIndex: "orderRemarks",
  875. key: "orderRemarks",
  876. isNoD: true,
  877. }
  878. ];
  879. export {
  880. member,
  881. highTechColumns,
  882. doubleSoft,
  883. softWriting,
  884. patent,
  885. currency,
  886. }