columns.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  1. //咨询单总数
  2. const table1 = [
  3. // {
  4. // type: "expand",
  5. // _slot_: "expand",
  6. // fixed: "left",
  7. // _noset_: true,
  8. // },
  9. // {
  10. // type: "selection",
  11. // fixed: "left",
  12. // _noset_: true
  13. // },
  14. {
  15. prop: "addtime",
  16. label: "咨询时间",
  17. minWidth: "155px",
  18. },
  19. {
  20. prop: "name",
  21. label: "业务部门",
  22. minWidth: "155px",
  23. },
  24. {
  25. prop: "total",
  26. label: "咨询数量",
  27. minWidth: "155px",
  28. },
  29. ]
  30. //采购订单总金额
  31. const table2 = [
  32. // {
  33. // type: "expand",
  34. // _slot_: "expand",
  35. // fixed: "left",
  36. // _noset_: true,
  37. // },
  38. // {
  39. // type: "selection",
  40. // fixed: "left",
  41. // _noset_: true
  42. // },
  43. {
  44. prop: "addtime",
  45. label: "咨询时间",
  46. minWidth: "155px",
  47. },
  48. {
  49. prop: "name",
  50. label: "业务部门",
  51. minWidth: "155px",
  52. },
  53. {
  54. prop: "total_fee",
  55. label: "采购金额",
  56. minWidth: "155px",
  57. },
  58. {
  59. prop: "good_num",
  60. label: "数量",
  61. minWidth: "155px",
  62. },
  63. {
  64. prop: "wait_total_fee",
  65. label: "待处理采购金额",
  66. minWidth: "155px",
  67. },
  68. {
  69. prop: "wait_good_num",
  70. label: "待处理采购单数",
  71. minWidth: "155px",
  72. },
  73. ]
  74. //采购员回复咨询单数
  75. const table3 = [
  76. // {
  77. // type: "expand",
  78. // _slot_: "expand",
  79. // fixed: "left",
  80. // _noset_: true,
  81. // },
  82. // {
  83. // type: "selection",
  84. // fixed: "left",
  85. // _noset_: true
  86. // },
  87. {
  88. prop: "addtime",
  89. label: "采反日期",
  90. minWidth: "155px",
  91. },
  92. {
  93. prop: "name",
  94. label: "创建人部门",
  95. minWidth: "155px",
  96. },
  97. {
  98. prop: "nickname",
  99. label: "采购员",
  100. minWidth: "155px",
  101. },
  102. {
  103. prop: "total",
  104. label: "采反次数",
  105. minWidth: "155px",
  106. },
  107. {
  108. prop: "num",
  109. label: "采反商品数量",
  110. minWidth: "155px",
  111. },
  112. ]
  113. //采购员订单金额
  114. const table4 = [
  115. // {
  116. // type: "expand",
  117. // _slot_: "expand",
  118. // fixed: "left",
  119. // _noset_: true,
  120. // },
  121. // {
  122. // type: "selection",
  123. // fixed: "left",
  124. // _noset_: true
  125. // },
  126. {
  127. prop: "addtime",
  128. label: "采购日期",
  129. minWidth: "155px",
  130. },
  131. {
  132. prop: "cgder",
  133. label: "采购员",
  134. minWidth: "155px",
  135. },
  136. {
  137. prop: "good_num",
  138. label: "采购数量",
  139. minWidth: "155px",
  140. },
  141. {
  142. prop: "total_fee",
  143. label: "采购货款",
  144. minWidth: "155px",
  145. },
  146. {
  147. prop: "wait_good_num",
  148. label: "待处理采购数量",
  149. minWidth: "155px",
  150. },
  151. {
  152. prop: "wait_total_fee",
  153. label: "待处理采购货款",
  154. minWidth: "155px",
  155. },
  156. ]
  157. //已采反报价信息
  158. const table5 = [
  159. // {
  160. // type: "expand",
  161. // _slot_: "expand",
  162. // fixed: "left",
  163. // _noset_: true,
  164. // },
  165. {
  166. type: "selection",
  167. fixed: "left",
  168. _noset_: true
  169. },
  170. {
  171. prop: "addtime",
  172. label: "咨询时间",
  173. minWidth: "155px",
  174. },
  175. {
  176. prop: "bidNo",
  177. label: "采购反馈单号",
  178. minWidth: "155px",
  179. },
  180. {
  181. prop: "zxNo",
  182. label: "咨询订单号",
  183. minWidth: "155px",
  184. },
  185. {
  186. prop: "cbaddtime",
  187. label: "回复时间",
  188. minWidth: "155px",
  189. },
  190. {
  191. prop: "good_name",
  192. label: "产品名称",
  193. minWidth: "165px",
  194. },
  195. {
  196. prop: "supplier",
  197. label: "供应商名称",
  198. minWidth: "165px",
  199. },
  200. {
  201. prop: "total_fee",
  202. label: "成本合计",
  203. minWidth: "125px",
  204. },
  205. {
  206. prop: "delivery_day",
  207. label: "物流时间(天)",
  208. minWidth: "95px",
  209. },
  210. {
  211. prop: "work_day",
  212. label: "产品工期(天)",
  213. minWidth: "95px",
  214. },
  215. {
  216. prop: "expire_day",
  217. label: "信息有效期(天)",
  218. minWidth: "95px",
  219. },
  220. {
  221. prop: "creater",
  222. label: "采购员",
  223. minWidth: "95px",
  224. },
  225. {
  226. prop: "num",
  227. label: "需求数量",
  228. minWidth: "105px",
  229. },
  230. {
  231. prop: "arrival_time",
  232. label: "要求到货日期",
  233. minWidth: "155px",
  234. },
  235. {
  236. prop: "salesman",
  237. label: "业务人员",
  238. minWidth: "105px",
  239. },
  240. {
  241. prop: "companyName",
  242. label: "客户名称",
  243. minWidth: "195px",
  244. },
  245. ]
  246. //未采返信息
  247. const table6 = [
  248. // {
  249. // type: "expand",
  250. // _slot_: "expand",
  251. // fixed: "left",
  252. // _noset_: true,
  253. // },
  254. {
  255. type: "selection",
  256. fixed: "left",
  257. _noset_: true
  258. },
  259. {
  260. prop: "date",
  261. label: "咨询订单号",
  262. minWidth: "155px",
  263. },
  264. {
  265. prop: "total",
  266. label: "产品名称",
  267. minWidth: "155px",
  268. },
  269. {
  270. prop: "total",
  271. label: "需求数量",
  272. minWidth: "155px",
  273. },
  274. {
  275. prop: "total",
  276. label: "客户名称",
  277. minWidth: "155px",
  278. },
  279. {
  280. prop: "total",
  281. label: "咨询时间",
  282. minWidth: "155px",
  283. },
  284. {
  285. prop: "total",
  286. label: "截止时间",
  287. minWidth: "155px",
  288. },
  289. ]
  290. //订单明细报表
  291. const table7 = [
  292. // {
  293. // type: "expand",
  294. // _slot_: "expand",
  295. // fixed: "left",
  296. // _noset_: true,
  297. // },
  298. {
  299. type: "selection",
  300. fixed: "left",
  301. _noset_: true
  302. },
  303. {
  304. prop: "cgdNo",
  305. label: "采购单编号",
  306. minWidth: "155px",
  307. },
  308. {
  309. prop: "addtime",
  310. label: "创建时间",
  311. minWidth: "155px",
  312. },
  313. {
  314. prop: "supplierNo",
  315. label: "供应商编号",
  316. minWidth: "155px",
  317. },
  318. {
  319. prop: "supplier_name",
  320. label: "供应商名称",
  321. minWidth: "155px",
  322. },
  323. {
  324. prop: "good_name",
  325. label: "产品名称",
  326. minWidth: "155px",
  327. },
  328. {
  329. prop: "good_num",
  330. label: "购买数量",
  331. minWidth: "110px",
  332. },
  333. {
  334. prop: "nake_fee",
  335. label: "裸价",
  336. minWidth: "100px",
  337. },
  338. {
  339. prop: "total_fee",
  340. label: "成本合计",
  341. minWidth: "110px",
  342. },
  343. {
  344. prop: "status",
  345. label: "单据状态",
  346. minWidth: "155px",
  347. },
  348. {
  349. prop: "send_status",
  350. label: "发货状态",
  351. minWidth: "110px",
  352. },
  353. {
  354. prop: "wsend_num",
  355. label: "未发货数量",
  356. minWidth: "110px",
  357. },
  358. {
  359. prop: "creater",
  360. label: "创建人",
  361. minWidth: "110px",
  362. },
  363. {
  364. prop: "company",
  365. label: "客户名称",
  366. minWidth: "155px",
  367. },
  368. {
  369. prop: "cgder",
  370. label: "采购员",
  371. minWidth: "110px",
  372. },
  373. {
  374. prop: "send_time",
  375. label: "发货时间",
  376. minWidth: "155px",
  377. },
  378. ]
  379. //售后明细报表
  380. const table8 = [
  381. // {
  382. // type: "expand",
  383. // _slot_: "expand",
  384. // fixed: "left",
  385. // _noset_: true,
  386. // },
  387. {
  388. type: "selection",
  389. fixed: "left",
  390. _noset_: true
  391. },
  392. {
  393. prop: "date",
  394. label: "售后单编号",
  395. minWidth: "155px",
  396. },
  397. {
  398. prop: "total",
  399. label: "创建时间",
  400. minWidth: "155px",
  401. },
  402. {
  403. prop: "total",
  404. label: "采购单编号",
  405. minWidth: "155px",
  406. },
  407. {
  408. prop: "total",
  409. label: "供应商名称",
  410. minWidth: "155px",
  411. },
  412. {
  413. prop: "total",
  414. label: "产品名称",
  415. minWidth: "155px",
  416. },
  417. {
  418. prop: "total",
  419. label: "购买数量",
  420. minWidth: "105px",
  421. },
  422. {
  423. prop: "total",
  424. label: "签收日期",
  425. minWidth: "155px",
  426. },
  427. {
  428. prop: "total",
  429. label: "提出售后日期",
  430. minWidth: "155px",
  431. },
  432. {
  433. prop: "total",
  434. label: "售后数量",
  435. minWidth: "105px",
  436. },
  437. {
  438. prop: "total",
  439. label: "问题描述",
  440. minWidth: "155px",
  441. },
  442. {
  443. prop: "total",
  444. label: "售后状态",
  445. minWidth: "155px",
  446. },
  447. ]
  448. //每日录入供应商报表
  449. const table9 = [
  450. // {
  451. // type: "expand",
  452. // _slot_: "expand",
  453. // fixed: "left",
  454. // _noset_: true,
  455. // },
  456. {
  457. type: "selection",
  458. fixed: "left",
  459. _noset_: true
  460. },
  461. {
  462. prop: "date",
  463. label: "录入供应商时间",
  464. minWidth: "155px",
  465. },
  466. {
  467. prop: "total",
  468. label: "供应商名称",
  469. minWidth: "155px",
  470. },
  471. {
  472. prop: "total",
  473. label: "采购维护人",
  474. minWidth: "155px",
  475. },
  476. {
  477. prop: "total",
  478. label: "供应商性质",
  479. minWidth: "155px",
  480. },
  481. {
  482. prop: "total",
  483. label: "供应商来源",
  484. minWidth: "155px",
  485. },
  486. {
  487. prop: "total",
  488. label: "付款方式",
  489. minWidth: "125px",
  490. },
  491. {
  492. prop: "total",
  493. label: "发货方式",
  494. minWidth: "155px",
  495. },
  496. {
  497. prop: "total",
  498. label: "修改供应商时间",
  499. minWidth: "155px",
  500. },
  501. ]
  502. //退货流水报表
  503. const table10 = [
  504. // {
  505. // type: "expand",
  506. // _slot_: "expand",
  507. // fixed: "left",
  508. // _noset_: true,
  509. // },
  510. {
  511. type: "selection",
  512. fixed: "left",
  513. _noset_: true
  514. },
  515. {
  516. prop: "date",
  517. label: "退货单号",
  518. minWidth: "155px",
  519. },
  520. {
  521. prop: "total",
  522. label: "退货时间",
  523. minWidth: "155px",
  524. },
  525. {
  526. prop: "total",
  527. label: "采购单编号",
  528. minWidth: "155px",
  529. },
  530. {
  531. prop: "total",
  532. label: "供应商名称",
  533. minWidth: "155px",
  534. },
  535. {
  536. prop: "total",
  537. label: "产品名称",
  538. minWidth: "155px",
  539. },
  540. {
  541. prop: "total",
  542. label: "购买数量",
  543. minWidth: "105px",
  544. },
  545. {
  546. prop: "total",
  547. label: "采购员",
  548. minWidth: "105px",
  549. },
  550. {
  551. prop: "total",
  552. label: "退货数量",
  553. minWidth: "115px",
  554. },
  555. {
  556. prop: "total",
  557. label: "已发货数量",
  558. minWidth: "115px",
  559. },
  560. {
  561. prop: "total",
  562. label: "退货原因",
  563. minWidth: "155px",
  564. },
  565. {
  566. prop: "total",
  567. label: "供应商是否可以退货",
  568. minWidth: "155px",
  569. },
  570. ]
  571. //产品上线报表
  572. const table11 = [
  573. // {
  574. // type: "expand",
  575. // _slot_: "expand",
  576. // fixed: "left",
  577. // _noset_: true,
  578. // },
  579. {
  580. type: "selection",
  581. fixed: "left",
  582. _noset_: true
  583. },
  584. {
  585. prop: "date",
  586. label: "采购维护人",
  587. minWidth: "125px",
  588. },
  589. {
  590. prop: "total",
  591. label: "产品编号(skuCode)",
  592. minWidth: "155px",
  593. },
  594. {
  595. prop: "total",
  596. label: "产品编号(spuCode)",
  597. minWidth: "155px",
  598. },
  599. {
  600. prop: "total",
  601. label: "产品名称",
  602. minWidth: "155px",
  603. },
  604. {
  605. prop: "total",
  606. label: "品牌名称",
  607. minWidth: "155px",
  608. },
  609. {
  610. prop: "total",
  611. label: "产品型号",
  612. minWidth: "155px",
  613. },
  614. {
  615. prop: "total",
  616. label: "供应商名称",
  617. minWidth: "155px",
  618. },
  619. {
  620. prop: "total",
  621. label: "税点",
  622. minWidth: "105px",
  623. },
  624. {
  625. prop: "total",
  626. label: "成本价合计",
  627. minWidth: "115px",
  628. },
  629. {
  630. prop: "total",
  631. label: "上线时间",
  632. minWidth: "155px",
  633. },
  634. ]
  635. //产品下线报表
  636. const table12 = [
  637. // {
  638. // type: "expand",
  639. // _slot_: "expand",
  640. // fixed: "left",
  641. // _noset_: true,
  642. // },
  643. {
  644. type: "selection",
  645. fixed: "left",
  646. _noset_: true
  647. },
  648. {
  649. prop: "date",
  650. label: "产品下线时间",
  651. minWidth: "155px",
  652. },
  653. {
  654. prop: "total",
  655. label: "采购维护人",
  656. minWidth: "155px",
  657. },
  658. {
  659. prop: "total",
  660. label: "产品编号(skuCode)",
  661. minWidth: "155px",
  662. },
  663. {
  664. prop: "total",
  665. label: "产品编号(spuCode)",
  666. minWidth: "155px",
  667. },
  668. {
  669. prop: "total",
  670. label: "产品名称",
  671. minWidth: "155px",
  672. },
  673. {
  674. prop: "total",
  675. label: "供应商名称",
  676. minWidth: "155px",
  677. },
  678. ]
  679. //产品修改报表
  680. const table13 = [
  681. // {
  682. // type: "expand",
  683. // _slot_: "expand",
  684. // fixed: "left",
  685. // _noset_: true,
  686. // },
  687. {
  688. type: "selection",
  689. fixed: "left",
  690. _noset_: true
  691. },
  692. {
  693. prop: "date",
  694. label: "产品操作时间",
  695. minWidth: "155px",
  696. },
  697. {
  698. prop: "total",
  699. label: "采购维护人",
  700. minWidth: "155px",
  701. },
  702. {
  703. prop: "total",
  704. label: "产品编号(spuCode)",
  705. minWidth: "155px",
  706. },
  707. {
  708. prop: "total",
  709. label: "产品名称",
  710. minWidth: "155px",
  711. },
  712. {
  713. prop: "total",
  714. label: "供应商名称",
  715. minWidth: "155px",
  716. },
  717. ]
  718. //出入库明细报表
  719. const table14 = [
  720. // {
  721. // type: "expand",
  722. // _slot_: "expand",
  723. // fixed: "left",
  724. // _noset_: true,
  725. // },
  726. {
  727. type: "selection",
  728. fixed: "left",
  729. _noset_: true
  730. },
  731. {
  732. prop: "date",
  733. label: "创建人",
  734. minWidth: "115px",
  735. },
  736. {
  737. prop: "total",
  738. label: "创建人公司",
  739. minWidth: "155px",
  740. },
  741. {
  742. prop: "total",
  743. label: "创建人部门",
  744. minWidth: "155px",
  745. },
  746. {
  747. prop: "total",
  748. label: "创建时间",
  749. minWidth: "155px",
  750. },
  751. {
  752. prop: "total",
  753. label: "单据状态",
  754. minWidth: "115px",
  755. },
  756. {
  757. prop: "total",
  758. label: "采购单号",
  759. minWidth: "155px",
  760. },
  761. {
  762. prop: "total",
  763. label: "出入库类型",
  764. minWidth: "155px",
  765. },
  766. {
  767. prop: "total",
  768. label: "产品名称",
  769. minWidth: "155px",
  770. },
  771. {
  772. prop: "total",
  773. label: "产品编码",
  774. minWidth: "155px",
  775. },
  776. {
  777. prop: "total",
  778. label: "出入库数量",
  779. minWidth: "155px",
  780. },
  781. {
  782. prop: "total",
  783. label: "出入库日期",
  784. minWidth: "155px",
  785. },
  786. {
  787. prop: "total",
  788. label: "维护人员",
  789. minWidth: "115px",
  790. },
  791. {
  792. prop: "total",
  793. label: "发起人",
  794. minWidth: "115px",
  795. },
  796. {
  797. prop: "total",
  798. label: "库房性质",
  799. minWidth: "155px",
  800. },
  801. {
  802. prop: "total",
  803. label: "库房公司",
  804. minWidth: "155px",
  805. },
  806. {
  807. prop: "total",
  808. label: "库房名称",
  809. minWidth: "155px",
  810. },
  811. ]
  812. export { table1, table2, table3, table4, table5,table6,table7,table8,table9,table10,table11,table12,table13,table14}