Commit cbe367096559af08debc2a7a29ee485585883458

Authored by boyang
1 parent 2b2b1bc4

修改表格样式

src/views/project/finance/financeProfit/ServiceProfit/ServiceProfit/data.tsx
... ... @@ -104,6 +104,14 @@ export const COLUMNS = [
104 104 width: 100,
105 105 },
106 106 {
  107 + title: '订单总数量',
  108 + dataIndex: 'orderCount',
  109 + width: 120,
  110 + customRender: (column) => {
  111 + return column.record?.orderCount;
  112 + },
  113 + },
  114 + {
107 115 title: '客户总金额¥',
108 116 width: 150,
109 117 dataIndex: 'customerTotalPrice',
... ... @@ -271,14 +279,6 @@ export const COLUMNS = [
271 279 },
272 280 },
273 281 {
274   - title: '订单总数量',
275   - dataIndex: 'orderCount',
276   - width: 120,
277   - customRender: (column) => {
278   - return column.record?.orderCount;
279   - },
280   - },
281   - {
282 282 title: '实际跟单单价¥',
283 283 dataIndex: 'actualOrderRmbPrice',
284 284 width: 160,
... ...