This commit is contained in:
齐天大圣 2024-04-10 16:38:30 +08:00
parent f76dc40dea
commit 79522d9e90
2 changed files with 3 additions and 3 deletions

View File

@ -3188,7 +3188,7 @@
discount.discount = res.data.memberFavorableAmount
_this.gradeDiscount.push(discount)
if(!this.isOilStorageCard) {
_this.oilDiscount += res.data.memberFavorableAmount
_this.oilDiscount = res.data.memberFavorableAmount
_this.checkAll2 = true
this.checkedCities2.push(discount.gunName)
}
@ -3208,7 +3208,7 @@
discount.type = res.data.type
_this.fullReduceDiscount.push(discount)
if(!this.isOilStorageCard) {
_this.fullReduction += res.data.activeFavorableAmount
_this.fullReduction = res.data.activeFavorableAmount
_this.checkAll1 = true
this.checkedCities1.push(discount.gunName)
}

View File

@ -21,7 +21,7 @@
<!-- <el-tag v-if="scope.row.type == 2" type="warning">通用券</el-tag>-->
<!-- </template>-->
</el-table-column>
<el-table-column align="center" prop="couponAmount" label="优惠金额/参与次数">
<el-table-column align="center" prop="couponAmount" label="优惠金额">
<template slot-scope="scope">
<span>{{scope.row.couponAmount || 0}}</span>
</template>