Commit b518d3cf599cdcd73ecfd02d200e54109e18b1af
1 parent
ece6f305
fix: 报表更换字段
Showing
1 changed file
with
2 additions
and
2 deletions
src/pages/OrderReport/components/OrderStatisticCard.tsx
... | ... | @@ -338,9 +338,9 @@ export default ({ data, statisticsMethod, reFreshData }) => { |
338 | 338 | <ProCard |
339 | 339 | className="order-statictis-card" |
340 | 340 | bordered |
341 | - title={<CardTitle title="已开票已回款订单" />} | |
341 | + title={<CardTitle title="未回款订单总金额" />} | |
342 | 342 | > |
343 | - <CardContent content={data?.invoicedAndReiceptedCount} /> | |
343 | + <CardContent unit="¥" content={data?.unpaidOrdersTotalAmount} /> | |
344 | 344 | </ProCard> |
345 | 345 | <ProCard |
346 | 346 | className="order-statictis-card" | ... | ... |