tips-prize-comp.js 1.25 KB
let app = getApp();
Component({
  properties: {
    // 这里定义了innerText属性,属性值可以在组件使用时指定
    innerText: {
      type: String,
      value: 'default value',
    },
    eleList: {
      type: Object,
      value: [],
    },
    eleVal: {
      type: Number,
      value: 0,
    },
    wishBillInfo: {
      type: Object,
      value: {},
    },
    wishInfo: {
      type: Object,
      value: {},
    },
    wishList: {
      type: Object,
      value: [],
    },
    // 1正常(有库存) 2无库存
    status: {
      type: Number,
      status: 2
    }
  },
  data: {
    // 这里是一些组件内部数据
    someData: {}
  },
  methods: {
    // 这里是一个自定义方法
    customMethod() {
      this.triggerEvent('evtcomp', {
        name: "_evt_custom"
      })
    },
    // 隐藏蒙层
    hideMask() {
      this.triggerEvent('evtcomp', {
        name: "_evt_hide_mask"
      });
    },
    // 自提 要带上参数
    toSelfLiftHandler() {
      this.hideMask();
      app.router.push({
        path: "prizeDetail",
        query: this.properties.wishInfo
      })
    },
    // 邮寄
    toUserTableHandler() {
      this.hideMask();
      app.router.push({
        path: "userTable",
      })
    },

  }
})