Sanakey
2022-10-24 c891bc5ff6b03baf28a9eac7f5a14ade4cea3c23
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// component/authorize/authorize.js
import utils from '../../utils/util.js'
 
Component({
  /**
   * 组件的属性列表
   */
  options: {
    multipleSlots: true // 在组件定义时的选项中启用多slot支持
  },
  properties: {},
 
  /**
   * 组件的初始数据
   */
  data: {
    // isAuthorize: true,
  },
  lifetimes: {
    // 生命周期函数,可以为函数,或一个在methods段中定义的方法名
    // attached() { },
    // moved() { },
    // detached() { },
    // ready() {
 
    // }
  },
 
  pageLifetimes: {
    // 组件所在页面的生命周期函数
    // show() {
    //   utils.isAuthorize(this);
    // },
    // hide() {
    // },
  },
 
  /**
   * 组件的方法列表
   */
  methods: {
    preventMove: function () {
      // 利用catchtouchmove阻止背景滚动 不用添加任何代码
      // 只适合模态层不需要滚动的场景
    },
    // async getUserProfile(){
    //   // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认
    //   // 开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
    //   console.log('>>>>>>>>准备获取头像');
    //   await wx.pro.getUserProfile({
    //     desc: '获取头像完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
    //   }).then(async(res)=>{
    //     console.log(res);
    //     if (!await this.postUserInfo(res)) return;
    //     this.setData({
    //       userInfo: res.userInfo,
    //       // hasUserInfo:true
    //     })
    //     if (!await wx.$commonRequest.getUserInfo()) return;
    //     console.log('----获取头像成功!----');
    //   }).catch((err) => {
    //     console.log(err,'----获取头像失败!----');
    //     // this.setData({hasUserInfo:false})
    //   })
    //   console.log('>>>>>>获取授权头像步骤完成');
    // },
    // 点击授权
    async getUserInfo(e) {
 
      await utils.isAuthorize(this);
 
      if(!this.data.isAuthorize){
        if (!await utils.authorize(e, this)){
            this.triggerEvent('authorize', {
              isAuthorize: false
            })
            return;
        } else{
          this.triggerEvent('authorize', {
            isAuthorize: true
          })
        }
 
      } else{
        this.triggerEvent('authorize', {
          isAuthorize: true
        })
      }
 
 
    },
  }
})