Compare commits
2 Commits
b078191ea3
...
f516365a5a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f516365a5a | ||
![]() |
a5ac9ecaa5 |
@ -1431,9 +1431,9 @@ export default {
|
|||||||
//商品订单金额
|
//商品订单金额
|
||||||
this.payForm.goodsAmount = this.getGoodsNum || 0
|
this.payForm.goodsAmount = this.getGoodsNum || 0
|
||||||
//油品实付金额
|
//油品实付金额
|
||||||
this.payForm.oilActualPay = this.oilGunClearing.amount ? this.oilGunClearing.getAmount-this.disOil : 0
|
this.payForm.oilActualPay = (this.oilGunClearing.getAmount || 0)-(this.disOil || 0)
|
||||||
//商品实付金额
|
//商品实付金额
|
||||||
this.payForm.goodsActualPay = this.getGoodsNum ? this.getGoodsNum-this.disGoods : 0
|
this.payForm.goodsActualPay = (this.getGoodsNum || 0) - (this.disGoods || 0)
|
||||||
//油枪id
|
//油枪id
|
||||||
this.payForm.oilGunId = this.oilGunClearing.id
|
this.payForm.oilGunId = this.oilGunClearing.id
|
||||||
//活动营销优惠金额
|
//活动营销优惠金额
|
||||||
@ -1463,7 +1463,7 @@ export default {
|
|||||||
//购买商品的总数量 计算属性
|
//购买商品的总数量 计算属性
|
||||||
this.payForm.goodsNum = this.getGoodsListNum
|
this.payForm.goodsNum = this.getGoodsListNum
|
||||||
//油品 + 商品 的实付总额
|
//油品 + 商品 的实付总额
|
||||||
this.payForm.allAmount = (this.oilGunClearing.getAmount-this.disOil) + (this.getGoodsNum-this.disGoods)
|
this.payForm.allAmount = this.realAmount
|
||||||
|
|
||||||
|
|
||||||
this.payForm.paymentType = this.payType
|
this.payForm.paymentType = this.payType
|
||||||
@ -1977,7 +1977,7 @@ export default {
|
|||||||
//购买商品的总数量 计算属性
|
//购买商品的总数量 计算属性
|
||||||
this.payForm.goodsNum = this.getGoodsListNum
|
this.payForm.goodsNum = this.getGoodsListNum
|
||||||
//油品 + 商品 的实付总额
|
//油品 + 商品 的实付总额
|
||||||
this.payForm.allAmount = (this.oilGunClearing.getAmount-this.disOil) + (this.getGoodsNum-this.disGoods)
|
this.payForm.allAmount = this.realAmount
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user