Blame view

admin-web-master/src/views/aaa/components/canvasShow/basics/coupon/mixin.js 1.89 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  import api from '../../config/api'
  import { funMixin } from '../../config/mixin'
  import { mapGetters } from 'vuex'
  
  export const commonMixin = {
    name: 'textComponent',
    mixins: [funMixin],
    data () {
      return {
        couponsData: []
      }
    },
    props: {
      terminal: {
        type: Number,
        default: 4
      },
      typeId: {
        type: Number,
        default: 1
      },
      shopId: {
        type: Number,
        default: 0
      },
      componentContent: {
        type: Object
      }
    },
    computed: {
      ...mapGetters([
        'couponNum'
      ]),
    },
    watch: {
      'couponNum': {
        handler(newVal, oldVal) {
          this.getData()
        },
        deep: true
      }
    },
    mounted() {
        this.getData()
    },
    methods: {
      getData() {
        const _ = this
        if(_.componentContent.selectedCoupon && _.componentContent.selectedCoupon.length > 0){
          this.beforeGetData()
          let _url = ''
          if(_.typeId === 1){
            _url =`${api.getCoupons}?page=1&pageSize=99&ids=${_.componentContent.selectedCoupon}`
          } else if(_.typeId === 3) {
            _url =`${api.getShopCoupons}?page=1&pageSize=99&shopId=${_.shopId}&ids=${_.componentContent.selectedCoupon}`
          }
          const params = {
            method: 'GET',
            url: _url,
          }
          this.sendReq(params, (res) => {
            _.afterGetData()
            _.couponsData = res.data.list
            if(_.typeId === 1){
              _.couponsData.forEach(item=>{
                item.couponName = item.activityName
                item.effectiveStart = item.activityStartTime
                item.effectiveEnd = item.activityEndTime
              })
            }
            if(JSON.stringify(_.componentContent.couponList) !== JSON.stringify(_.couponsData)){
              _.componentContent.couponList = _.couponsData
            }
          },(err)=>{
            _.afterGetData()
          })
        } else {
          _.couponsData = []
        }
      }
    }
  }