闫增涛
2024-03-18 b929e9d487632580cc28ac7b8bf9494f25ca8ca3
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
// pages/bookServices/detail/components/learnResource/learnResource.js
Component({
  /**
   * 组件的属性列表
   */
  properties: {
 
  },
 
  /**
   * 组件的初始数据
   */
  data: {
    receive: false,
    buy: false,
  },
 
  /**
   * 组件的方法列表
   */
  methods: {
    getFreeResource() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('getFreeResource', myEventDetail, myEventOption)
    },
    allAddShoppiingCar() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('allAddShoppiingCar', myEventDetail, myEventOption)
    },
    changeReceive(type) {
      this.setData({
        receive: type
      })
    },
    changeBuy(type) {
      this.setData({
        buy: type
      })
    }
  }
})