From d182ba99adf328518d9d614105e314ef9bc58545 Mon Sep 17 00:00:00 2001 From: cun-nan <19819293608@163.com> Date: Wed, 11 Sep 2024 17:35:10 +0800 Subject: [PATCH] 9.11 --- .../views/EventMarketing/CardHolder/index.vue | 10 +- .../views/EventMarketing/SaveBlock/index.vue | 9 +- .../activeConsumption/index.vue | 679 +------------ .../EventMarketing/activeNewlyweds/index.vue | 574 +---------- .../src/views/EventMarketing/center/index.vue | 958 +++++++++--------- .../EventMarketing/liJianMarketing/index.vue | 11 +- .../EventMarketing/openCardGift/birthday.vue | 25 +- .../EventMarketing/openCardGift/index.vue | 111 +- .../EventMarketing/openCardGift/invite.vue | 37 +- .../EventMarketing/openCardGift/popUp.vue | 14 +- .../openCardGift/userConsume.vue | 12 +- .../openCardGift/userRecharge.vue | 12 +- .../controller/ActiveAppletController.java | 2 +- .../activeApplet/entity/ActiveApplet.java | 16 +- .../mapper/xml/ActiveAppletMapper.xml | 12 +- .../service/ActiveAppletService.java | 7 + .../service/impl/ActiveAppletServiceImpl.java | 18 +- .../activeBirthday/entity/ActiveBirthday.java | 4 + .../impl/ActiveBirthdayServiceImpl.java | 34 +- .../impl/ActiveConsumptionServiceImpl.java | 39 +- .../service/ActiveNewlywedsService.java | 4 +- .../impl/ActiveNewlywedsServiceImpl.java | 514 +++++----- .../activePopUp/entity/ActivePopUp.java | 4 + .../service/impl/ActivePopUpServiceImpl.java | 38 +- .../activePrice/entity/ActiveSubPrice.java | 4 + .../impl/ActiveSubPriceServiceImpl.java | 29 + .../impl/ActiveRecommendServiceImpl.java | 55 +- .../entity/ActiveUserConsume.java | 4 + .../impl/ActiveUserConsumeServiceImpl.java | 38 +- .../entity/ActiveUserRecharge.java | 4 + .../impl/ActiveUserRechargeServiceImpl.java | 38 +- 31 files changed, 1227 insertions(+), 2089 deletions(-) diff --git a/fuintAdmin/src/views/EventMarketing/CardHolder/index.vue b/fuintAdmin/src/views/EventMarketing/CardHolder/index.vue index 33e91bc2d..1c4da6a58 100644 --- a/fuintAdmin/src/views/EventMarketing/CardHolder/index.vue +++ b/fuintAdmin/src/views/EventMarketing/CardHolder/index.vue @@ -8,7 +8,7 @@
- +
@@ -36,7 +36,8 @@ export default { "电子卡", "礼品卡", "优惠券" - ] + ], + type:"", } }, components: { @@ -45,6 +46,11 @@ export default { giftBlock, newCertificate }, + created() { + if (this.$route.query.type) { + this.type = this.$route.query.type + } + }, methods: { // goDetail(id){ // if(id == 1){ diff --git a/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue b/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue index 290e623f3..73e629a39 100644 --- a/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue +++ b/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue @@ -543,6 +543,7 @@ import { export default { name: 'index', dicts: ['CardCoupon_type', 'putType_type', 'oilNumber_type'], + props:['type'], data(){ return{ ruleForm: { @@ -695,8 +696,14 @@ import { vipname:[] } }, - mounted() { + created() { this.getlist() + if (this.type){ + this.dialog = true + } + }, + mounted() { + }, methods:{ addCrule(){ diff --git a/fuintAdmin/src/views/EventMarketing/activeConsumption/index.vue b/fuintAdmin/src/views/EventMarketing/activeConsumption/index.vue index 1d3ba274c..4434cac3d 100644 --- a/fuintAdmin/src/views/EventMarketing/activeConsumption/index.vue +++ b/fuintAdmin/src/views/EventMarketing/activeConsumption/index.vue @@ -1,664 +1,5 @@