tips-common-comp.js 740 Bytes
let app = getApp();
Component({
  properties: {
    // 这里定义了innerText属性,属性值可以在组件使用时指定
    cid: {
      type: String,
      value: '',
    },
    innerText: {
      type: String,
      value: '',
    },
    innerButton: {
      type: String,
      value: '我知道了',
    }
  },
  data: {
    // 这里是一些组件内部数据
    someData: {}
  },
  methods: {
    // 这里是一个自定义方法
    customMethod() {
      this.triggerEvent('evtcomp', {
        name: "_evt_custom"
      })
    },
    // 隐藏蒙层
    hideMask() {
      this.triggerEvent('evtcomp', {
        name: "_evt_hide_mask",
        data: {
          cid: this.properties.cid,
        }
      });
    }
  }
})