seckill-order-comp.js 1.2 KB
let app = getApp();
Component({
  options: {
    styleIsolation: 'apply-shared'
  },
  properties: {
    // 这里定义了innerText属性,属性值可以在组件使用时指定
    // cid 用户区分组件
    cid: {
      type: String,
      value: '1',
    },
    innerTitle: {
      type: String,
      value: '',
    },
    innerText: {
      type: String,
      value: '',
    },
    innerButton: {
      type: String,
      value: '确定',
    },
    userInfo: {
      type: Object,
      value: {}
    },
    productInfo: {
      type: Object,
      value: {}
    },
  },
  data: {
    // 这里是一些组件内部数据
    someData: {},
    num: 1,
  },
  methods: {

    // 这里是一个自定义方法
    customMethod() {
      this.triggerEvent('evtcomp', {
        name: "_evt_custom"
      })
    },
    onStepperChange(e) {
      this.setNum(e.detail);
    },
    setNum(val) {
      this.setData({
        num: val
      })
    },
    // 隐藏蒙层
    hideMask() {
      this.triggerEvent('evtcomp', {
        name: "_evt_hide_mask"
      });
    },
    // 点击自定义按钮
    onInnerButtonHandler() {
      this.triggerEvent('evtcomp', {
        name: "_evt_hide_mask"
      });
    }
  }
})