|
@@ -45,7 +45,9 @@
|
|
|
<view class="bottom-container">
|
|
|
<view class="left">
|
|
|
<view class="text">共{{ totalNum }}件,合计:</view>
|
|
|
- <view class="price">¥{{ totalPrice | priceFilter }}</view>
|
|
|
+ <view class="price"
|
|
|
+ >¥{{ (Number(otherPrice) + Number(servicePrice) + Number(totalPrice)) | priceFilter }}</view
|
|
|
+ >
|
|
|
</view>
|
|
|
<view class="btn">
|
|
|
<u-button
|
|
@@ -143,13 +145,13 @@ export default {
|
|
|
remark: this.remark,
|
|
|
userMobile: this.userMobile,
|
|
|
workerOrderId: this.orderNo,
|
|
|
- categoryId: this.categoryId || '',
|
|
|
- categoryName: this.categoryName || '',
|
|
|
+ categoryId: this.categoryId || '123',
|
|
|
+ categoryName: this.categoryName || '123',
|
|
|
websitId: this.websitId,
|
|
|
websitName: this.websitName,
|
|
|
workerOrderItems: this.goodsList,
|
|
|
otherPrice: this.otherPrice,
|
|
|
- servicePrice:this.servicePrice
|
|
|
+ servicePrice: this.servicePrice,
|
|
|
}).then(res => {
|
|
|
this.$navToPage({
|
|
|
url: `/packageMaterial/pages/newSale/pay?handleOrderId=${res.data}&wbId=${this.wbId}`
|