|
|
|
@ -38,7 +38,19 @@ export default observer((props) => {
|
|
|
|
|
</>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{ title: '人数', dataIndex: 'TotalPersonNum', key: 'TotalPersonNum' },
|
|
|
|
|
{ title: '人数', dataIndex: 'TotalPersonNum', key: 'TotalPersonNum',
|
|
|
|
|
sorter: (a, b) => tableSorter(a, b, 'TotalPersonNum'),
|
|
|
|
|
render: (v, r) => (
|
|
|
|
|
<>
|
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
|
<Text strong>
|
|
|
|
|
{v}
|
|
|
|
|
{r.CPTotalPersonNum && <Text type="secondary"> VS {r.CPTotalPersonNum}</Text>}
|
|
|
|
|
</Text>
|
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalPersonNumPercent} />}
|
|
|
|
|
</Space>
|
|
|
|
|
</>
|
|
|
|
|
),},
|
|
|
|
|
{ title: '总利润', dataIndex: 'TotalProfit', key: 'TotalProfit',
|
|
|
|
|
sorter: (a, b) => tableSorter(a, b, 'TotalProfit'),
|
|
|
|
|
render: (v, r) => (
|
|
|
|
|