diff --git a/xtends/statics/index/index.wxml b/xtends/statics/index/index.wxml
index 95e7db8..6871845 100644
--- a/xtends/statics/index/index.wxml
+++ b/xtends/statics/index/index.wxml
@@ -65,21 +65,21 @@
收货合计(吨)
- {{reportInfo.totalSettleWeight}}
+ {{formate.numberFormat(reportInfo.totalSettleWeight || 0)}}
场外收货(吨)
- {{reportInfo.totalOffsiteSettleWeight}}
+ {{formate.numberFormat(reportInfo.totalOffsiteSettleWeight || 0)}}
收货总金额(元)
- {{reportInfo.totalSettlePrice}}
+ {{formate.numberFormat(reportInfo.totalSettlePrice || 0)}}
场内收货(吨)
- {{reportInfo.totalOnsideSettleWeight}}
+ {{formate.numberFormat(reportInfo.totalOnsideSettleWeight || 0)}}
@@ -96,12 +96,12 @@
- {{formate.formateWeight(saleReportInfo.totalOutboundDeliveryNetWeight || 0)}}
+ {{formate.numberFormat(saleReportInfo.totalOutboundDeliveryNetWeight || 0)}}
总出货重量(吨)
- {{formate.formateWeight(saleReportInfo.totalSettleWeight || 0)}}
+ {{formate.numberFormat(saleReportInfo.totalSettleWeight || 0)}}
总结算重量(吨)
@@ -111,12 +111,12 @@
- {{formate.formateWeight(saleReportInfo.carNumber || 0)}}
+ {{saleReportInfo.carNumber || 0}}
总出车数(车)
- {{formate.formateWeight(saleReportInfo.totalSettlePrice || 0)}}
+ {{formate.numberFormat(saleReportInfo.totalSettlePrice || 0)}}
总结算金额(元)