Sanakey
2020-08-13 d98d05000c3d14e1f12a7754ebeea11ec1fa0f0b
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
// component/item-flex-row/index.js
Component({
  /**
   * 组件的属性列表
   */
  properties: {
    storeData: {
      type: Array,
      observer(newVal, oldVal, changedPath) {
        // 属性被改变时执行的函数(可选),也可以写成在methods段中定义的方法名字符串, 如:'_propertyChange'
        // 通常 newVal 就是新设置的数据, oldVal 是旧数据
        // this.showLayer()
        // console.log(newVal);
        // console.log(oldVal);
      }
    },
  },
 
  /**
   * 组件的初始数据
   */
  data: {},
 
  attached() {
    // this.setData({
    //   storeData
    // })
  },
 
  /**
   * 组件的方法列表
   */
  methods: {
    telTap(e) {
      wx.makePhoneCall({
        phoneNumber: e.currentTarget.dataset.telNum,
      });
      // console.log(e.currentTarget.dataset.telNum);
    },
 
    selectShop(e) {
      this.triggerEvent('selectShop', {
        shopId: e.currentTarget.dataset.shopid,
        ccCode: e.currentTarget.dataset.cccode,
      });
    }
  }
});