content.config.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. import { ContentConfig } from "/@/components/PageContent";
  2. import { httpList } from "/@/api/invoiceInOut/productManager";
  3. import { cg_order_type_options, statusList } from "/@/utils/status";
  4. import { ElTag } from "element-plus";
  5. import { h } from "vue";
  6. const columns = [
  7. {
  8. width: 40,
  9. type: 'selection',
  10. fixed: 'left'
  11. },
  12. {
  13. label: '商品ID',
  14. prop: 'id',
  15. width: 60
  16. },
  17. {
  18. label: "商品编码",
  19. prop: "skuCode",
  20. width: 150
  21. },
  22. {
  23. label: "销售方公司",
  24. prop: "seller_name",
  25. width: 160
  26. },
  27. {
  28. label: "购买方公司",
  29. prop: "buyer_name",
  30. width: 160
  31. },
  32. {
  33. label: '商品类型',
  34. width: 100,
  35. cellRenderer({ row }){
  36. return h(ElTag, { size: 'small' }, {
  37. default: () => cg_order_type_options.find(item => item.value == row.good_type)?.label || '--'
  38. })
  39. }
  40. },
  41. {
  42. label: '商品名称',
  43. prop: 'goodName',
  44. width: 150
  45. },
  46. {
  47. label: "规格",
  48. prop: "spec",
  49. width: 80
  50. },
  51. {
  52. label: "单位",
  53. prop: "unit",
  54. width: 80
  55. },
  56. {
  57. label: '结存数',
  58. prop: 'residue_stock',
  59. width: 100
  60. },
  61. {
  62. label: "状态",
  63. prop: "status",
  64. width: 80,
  65. cellRenderer({ row }){
  66. return h(
  67. ElTag,
  68. { size: 'small', type: statusList.find(item => item.value == row.status)?.type || 'warning' },
  69. { default: () => statusList.find(item => item.value == row.status)?.label || '--' }
  70. )
  71. }
  72. },
  73. {
  74. label: '税前单价',
  75. prop: 'subunit_price',
  76. width: 100
  77. },
  78. {
  79. label: '税后单价',
  80. prop: 'unit_price',
  81. width: 100
  82. },
  83. {
  84. label: '重量',
  85. prop: 'unit_weight',
  86. width: 80
  87. },
  88. {
  89. label: '分光',
  90. prop: 'spectral',
  91. width: 80
  92. },
  93. {
  94. label: '创建人',
  95. prop: 'apply_name',
  96. width: 80
  97. },
  98. {
  99. label:'创建时间',
  100. prop: 'create_time',
  101. width: 140
  102. }
  103. ];
  104. const contentConfig: ContentConfig = {
  105. columns,
  106. companyProp: 'buyer_code',
  107. apis: {
  108. httpList: (parameter = {}) => httpList({ ...parameter, status: '1' })
  109. }
  110. };
  111. export default contentConfig;