update
This commit is contained in:
parent
8ba5014fd7
commit
665ed9cf67
@ -84,7 +84,7 @@
|
|||||||
:value-style="{ color: '#fa8c16' }"
|
:value-style="{ color: '#fa8c16' }"
|
||||||
/>
|
/>
|
||||||
<a-statistic
|
<a-statistic
|
||||||
title="完成配送订单数"
|
title="完成订单数"
|
||||||
:value="dashboardData.order_completed_count || 0"
|
:value="dashboardData.order_completed_count || 0"
|
||||||
class="main-stat"
|
class="main-stat"
|
||||||
:value-style="{ color: '#fa8c16' }"
|
:value-style="{ color: '#fa8c16' }"
|
||||||
@ -128,31 +128,35 @@
|
|||||||
</template>
|
</template>
|
||||||
<div class="main-stat-row">
|
<div class="main-stat-row">
|
||||||
<a-statistic
|
<a-statistic
|
||||||
title="总配送订单"
|
title="总配送金额"
|
||||||
:value="dashboardData.order_amount || 0"
|
:value="dashboardData.order_amount || 0"
|
||||||
:precision="1"
|
:precision="1"
|
||||||
|
prefix="¥"
|
||||||
class="main-stat"
|
class="main-stat"
|
||||||
:value-style="{ color: '#52c41a' }"
|
:value-style="{ color: '#52c41a' }"
|
||||||
/>
|
/>
|
||||||
<a-statistic
|
<a-statistic
|
||||||
title="完成配送订单"
|
title="完成配送金额"
|
||||||
:value="dashboardData.completed_order_amount || 0"
|
:value="dashboardData.completed_order_amount || 0"
|
||||||
:precision="1"
|
:precision="1"
|
||||||
|
prefix="¥"
|
||||||
class="main-stat"
|
class="main-stat"
|
||||||
:value-style="{ color: '#52c41a' }"
|
:value-style="{ color: '#52c41a' }"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="sub-stats">
|
<div class="sub-stats">
|
||||||
<a-statistic
|
<a-statistic
|
||||||
title="付费订单"
|
title="付费金额"
|
||||||
:value="dashboardData.pay_amount || 0"
|
:value="dashboardData.pay_amount || 0"
|
||||||
:precision="1"
|
:precision="1"
|
||||||
|
prefix="¥"
|
||||||
:value-style="{ color: '#52c41a' }"
|
:value-style="{ color: '#52c41a' }"
|
||||||
/>
|
/>
|
||||||
<a-statistic
|
<a-statistic
|
||||||
title="未支付订单"
|
title="未支付金额"
|
||||||
:value="dashboardData.unpaid_amount || 0"
|
:value="dashboardData.unpaid_amount || 0"
|
||||||
:precision="1"
|
:precision="1"
|
||||||
|
prefix="¥"
|
||||||
:value-style="{ color: '#52c41a' }"
|
:value-style="{ color: '#52c41a' }"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user