确认订单更新
This commit is contained in:
@@ -918,17 +918,10 @@
|
||||
url: '/pages/product/index'
|
||||
})
|
||||
}
|
||||
//打包费
|
||||
const packfee = computed(() => {
|
||||
const historyOrderPackfee = listinfo.packFeess ? listinfo.packFeess * 1 : 0;
|
||||
const nowCartsPackFee = is_type.value ? cartStore.totalPackFee * 1 : 0;
|
||||
const total = historyOrderPackfee + nowCartsPackFee
|
||||
return total
|
||||
})
|
||||
//不计算各种折扣前的实付金额
|
||||
const shifu = computed(() => {
|
||||
const payAmount = listinfo.payAmount ? listinfo.payAmount * 1 : 0
|
||||
return payAmount + cartStore.totalPrice * 1 + packfee.value * 1
|
||||
return payAmount + cartStore.totalPrice * 1 + 0;
|
||||
})
|
||||
//减去各种折扣后的金额
|
||||
const lastPayMoney = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user