k94314517
2024-07-25 28c725308aaf418e9032964ffcf5ca3b0d8a1208
wechat_jiaxuan/components/idCard/index.js
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,32 @@
// components/idCard/index.js
Component({
  /**
   * ç»„件的属性列表
   */
  properties: {
    users: Object
  },
  /**
   * ç»„件的初始数据
   */
  data: {
  },
  /**
   * ç»„件的方法列表
   */
  methods: {
    callPhone() {
      wx.makePhoneCall({
        phoneNumber: this.data.users.phone
      })
    },
    jumpCard() {
      wx.navigateTo({
        url: '/pages/store/staff?id=' + this.data.users.iamId,
      })
    },
  }
})