|
@@ -412,6 +412,27 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
},
|
|
|
]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '充值数据',
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ title: '今日账面充值', dataIndex: 'orderAmount', label: '充值数据', align: 'center', width: 110, sorter: true,
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '今日账面回收', dataIndex: 'appOrderIncome', tips: '变现+充值', label: '充值数据', align: 'center', width: 110, sorter: true,
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '累计充值', dataIndex: 'totalOrderAmount', label: '充值数据', align: 'center', width: 110, sorter: true,
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '累计回收', dataIndex: 'totalAppOrderIncome', label: '充值数据', align: 'center', width: 110, sorter: true,
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
+ },
|
|
|
+ ]
|
|
|
}
|
|
|
]
|
|
|
}
|