update: 出货汇总 收货汇总汇总显示保留2位
This commit is contained in:
parent
ea7e4ddb27
commit
0795a713ab
|
@ -25,21 +25,21 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box" style="border: none">
|
<view class="inner-box" style="border: none">
|
||||||
<view class="num highlight">{{
|
<view class="num highlight">{{
|
||||||
formatMoney(state.summary.totalAmount)
|
formatMoney(state.summary.totalAmount, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>收货总量/kg</view>
|
<view>收货总量/kg</view>
|
||||||
</view>
|
</view>
|
||||||
</up-col>
|
</up-col>
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{ formatMoney(state.summary.totalPaid) }}</view>
|
<view class="num">{{ formatMoney(state.summary.totalPaid, 2) }}</view>
|
||||||
<view>已付/kg</view>
|
<view>已付/kg</view>
|
||||||
</view>
|
</view>
|
||||||
</up-col>
|
</up-col>
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalUnpaid)
|
formatMoney(state.summary.totalUnpaid,2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>未付/kg</view>
|
<view>未付/kg</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box" style="border: none">
|
<view class="inner-box" style="border: none">
|
||||||
<view class="num highlight">{{
|
<view class="num highlight">{{
|
||||||
formatMoney(state.summary.totalPayment)
|
formatMoney(state.summary.totalPayment,2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>结算金额/元</view>
|
<view>结算金额/元</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalPaidPrice)
|
formatMoney(state.summary.totalPaidPrice,2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>已付金额</view>
|
<view>已付金额</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalUnpaidPrice)
|
formatMoney(state.summary.totalUnpaidPrice,2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>应付金额</view>
|
<view>应付金额</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
<up-col span="6">
|
<up-col span="6">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.averagePrice)
|
formatMoney(state.summary.averagePrice,2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>均价(元/kg)</view>
|
<view>均价(元/kg)</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box" style="border: none">
|
<view class="inner-box" style="border: none">
|
||||||
<view class="num highlight">{{
|
<view class="num highlight">{{
|
||||||
formatMoney(state.summary.totalAmount)
|
formatMoney(state.summary.totalAmount, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>出货总量/kg</view>
|
<view>出货总量/kg</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalPayShipment)
|
formatMoney(state.summary.totalPayShipment, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>已收/kg</view>
|
<view>已收/kg</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalUnPayShipment)
|
formatMoney(state.summary.totalUnPayShipment, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>未收/kg</view>
|
<view>未收/kg</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box" style="border: none">
|
<view class="inner-box" style="border: none">
|
||||||
<view class="num highlight">{{
|
<view class="num highlight">{{
|
||||||
formatMoney(state.summary.totalCollection)
|
formatMoney(state.summary.totalCollection, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>结算金额/元</view>
|
<view>结算金额/元</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalPayCollection)
|
formatMoney(state.summary.totalPayCollection, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>实收金额</view>
|
<view>实收金额</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
<up-col span="4">
|
<up-col span="4">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{
|
<view class="num">{{
|
||||||
formatMoney(state.summary.totalUnPayCollection)
|
formatMoney(state.summary.totalUnPayCollection, 2)
|
||||||
}}</view>
|
}}</view>
|
||||||
<view>应收金额</view>
|
<view>应收金额</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -81,13 +81,17 @@
|
||||||
<up-row>
|
<up-row>
|
||||||
<up-col span="6">
|
<up-col span="6">
|
||||||
<view class="inner-box" style="border: none">
|
<view class="inner-box" style="border: none">
|
||||||
<view class="num">{{ state.summary.totalReceipt }}</view>
|
<view class="num">{{
|
||||||
|
formatMoney(state.summary.totalReceipt)
|
||||||
|
}}</view>
|
||||||
<view>出货单</view>
|
<view>出货单</view>
|
||||||
</view>
|
</view>
|
||||||
</up-col>
|
</up-col>
|
||||||
<up-col span="6">
|
<up-col span="6">
|
||||||
<view class="inner-box">
|
<view class="inner-box">
|
||||||
<view class="num">{{ state.summary.averagePrice }}</view>
|
<view class="num">{{
|
||||||
|
formatMoney(state.summary.averagePrice, 2)
|
||||||
|
}}</view>
|
||||||
<view>均价(元/kg)</view>
|
<view>均价(元/kg)</view>
|
||||||
</view>
|
</view>
|
||||||
</up-col>
|
</up-col>
|
||||||
|
|
Loading…
Reference in New Issue