|
@@ -12,7 +12,7 @@
|
|
|
<span>促销门槛:</span>
|
|
|
<div v-if="descDetail.gateFlag === '1'">
|
|
|
<span v-if="descDetail.gateType==='RATIO_AMOUNT'">
|
|
|
- 购买门槛产品金额{{ descDetail.gateValue*100 }}%作为配额
|
|
|
+ 购买门槛产品金额{{ (descDetail.gateValue*100).toFixed(2) }}%作为配额
|
|
|
</span>
|
|
|
<span v-else-if="descDetail.gateType==='MIN_AMOUNT'">
|
|
|
购买门槛产品满最低金额{{ descDetail.gateValue }}元,不限制配额
|
|
@@ -456,7 +456,7 @@ export default {
|
|
|
showDesc (descDetail) {
|
|
|
this.showDescBox = !this.showDescBox
|
|
|
this.descDetail = descDetail
|
|
|
- console.log(descDetail)
|
|
|
+ this.descDetail.gateValue = Number(this.descDetail.gateValue).toFixed(2)
|
|
|
this.$emit('showDesc', this.showDescBox)
|
|
|
},
|
|
|
openCpModal () {
|