diff --git a/fuintAdmin/src/views/EventMarketing/openCardGift/separate.vue b/fuintAdmin/src/views/EventMarketing/openCardGift/separate.vue index 13e25e199..14b47f323 100644 --- a/fuintAdmin/src/views/EventMarketing/openCardGift/separate.vue +++ b/fuintAdmin/src/views/EventMarketing/openCardGift/separate.vue @@ -136,6 +136,9 @@ prop="paymentType" label="支付方式" > + {{dict.label}} + :value="dict.value">{{ dict.label }} + @@ -386,21 +390,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -600,7 +604,7 @@ export default { ruleForm1: { activeType: 1, timeType: 0, - consumeType:'', + consumeType: '', paymentType: [] } } @@ -610,11 +614,27 @@ export default { this.getRuleList() }, methods: { + //支付方式 转义 + getPaymentTypeStr(value) { + + let valueList = value.split(","); + + console.log(this.dict.type.payment_type) + + let newValueList = valueList.map((item) => { + let matchedLabel = this.dict.type.payment_type.find((item1) => item1.value === item)?.label; + return matchedLabel || item; // 如果没有找到匹配的 label,则返回原来的 item + }); + + //数组 转字符串 + return newValueList.join(",") + + }, // 重置活动规则 resetRule() { this.ruleForm1 = { activeType: 1, - consumeType:'', + consumeType: '', timeType: 0, paymentType: [] } @@ -656,12 +676,12 @@ export default { }, // 提交活动规则 submitRuleForm() { - if (this.ruleForm1.consumeType == 1){ - if (!this.ruleForm1.literMin || !this.ruleForm1.literMax){ + if (this.ruleForm1.consumeType == 1) { + if (!this.ruleForm1.literMin || !this.ruleForm1.literMax) { this.$message.error("请填写消费条件信息") } - }else { - if (!this.ruleForm1.moneyMin || !this.ruleForm1.moneyMax){ + } else { + if (!this.ruleForm1.moneyMin || !this.ruleForm1.moneyMax) { this.$message.error("请填写消费条件信息") } } @@ -701,7 +721,7 @@ export default { }, // 查询分时优惠列表信息 getTimeShareList() { - getRequestList({pageNo: 1, pageSize: 10000,activeType:1}).then(res => { + getRequestList({pageNo: 1, pageSize: 10000, activeType: 1}).then(res => { this.timeShareList = res.data.records }) }, diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activePrice/mapper/xml/ActivePriceRuleMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activePrice/mapper/xml/ActivePriceRuleMapper.xml index c825eb4bd..ddf022d89 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activePrice/mapper/xml/ActivePriceRuleMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activePrice/mapper/xml/ActivePriceRuleMapper.xml @@ -73,6 +73,7 @@ AND ap.active_type = #{entity.activeType} + order by create_time desc