|
|
@ -31,7 +31,7 @@ export default observer((props) => {
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
<Text strong>
|
|
|
|
<Text strong>
|
|
|
|
{v}
|
|
|
|
{v}
|
|
|
|
{r.CPTotalNum && <Text type="secondary"> VS {r.CPTotalNum}</Text>}
|
|
|
|
{r.CPTotalNum ? <Text type="secondary"> VS {r.CPTotalNum}</Text> : null}
|
|
|
|
</Text>
|
|
|
|
</Text>
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalNumPercent} />}
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalNumPercent} />}
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
@ -45,7 +45,7 @@ export default observer((props) => {
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
<Text strong>
|
|
|
|
<Text strong>
|
|
|
|
{v}
|
|
|
|
{v}
|
|
|
|
{r.CPTotalPersonNum && <Text type="secondary"> VS {r.CPTotalPersonNum}</Text>}
|
|
|
|
{r.CPTotalPersonNum ? <Text type="secondary"> VS {r.CPTotalPersonNum}</Text> : null}
|
|
|
|
</Text>
|
|
|
|
</Text>
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalPersonNumPercent} />}
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalPersonNumPercent} />}
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
@ -58,7 +58,7 @@ export default observer((props) => {
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
<Space direction={'vertical'}>
|
|
|
|
<Text strong>
|
|
|
|
<Text strong>
|
|
|
|
{v}
|
|
|
|
{v}
|
|
|
|
{r.CPTotalProfit && <Text type="secondary"> VS {r.CPTotalProfit}</Text>}
|
|
|
|
{r.CPTotalProfit ? <Text type="secondary"> VS {r.CPTotalProfit}</Text> : null}
|
|
|
|
</Text>
|
|
|
|
</Text>
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalProfitPercent} />}
|
|
|
|
{r.CPTotalNum && <VSTag diffPercent={r.TotalProfitPercent} />}
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
|