yj
2024-12-05 ac3234c308e86f20cc63465573f321561ee00690
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
<template>
  <view class="container">
    <!-- 此页面不可返回 -->
    <view class="left-bottom-sign" />
    <view class="right-top-sign" />
    <view class="wrapper">
      <view class="left-top-sign">
        BIND
      </view>
      <view class="welcome">
        绑定手机!
      </view>
      <!-- #ifdef MP-WEIXIN -->
      <!-- 微信小程序,自动获取 -->
      <button class="confirm-btn" :disabled="wxBinding" open-type="getPhoneNumber" @getphonenumber="doWxBind">
        授权绑定手机号
      </button>
      <!-- #endif -->
      <!-- #ifndef MP-WEIXIN -->
      <!-- 验证码绑定 -->
      <view class="input-content">
        <view class="input-item">
          <text class="tit">
            手机号码
          </text>
          <input type="number" :value="phone" placeholder="请输入手机号码" maxlength="11" data-key="phone" @input="inputChange">
        </view>
        <view class="input-item">
          <text class="tit">
            验证码
          </text>
          <view class="verify-code">
            <input
              type="mobile"
              value=""
              placeholder="6位验证码"
              maxlength="6"
              data-key="verifyCode"
              style="width: 60%;"
              @input="inputChange"
            >
            <button style="width: 40%;" :disabled="sendDisabled" @click="doGetVerify">
              {{ sendText }}
            </button>
          </view>
        </view>
      </view>
      <button class="confirm-btn" :disabled="binding" @click="doBind">
        绑定
      </button>
      <!-- #endif -->
    </view>
  </view>
</template>
 
<script>
import {
  mapMutations
} from 'vuex'
 
export default {
  data() {
    return {
      wxBinding: false,
      phone: '',
      binding: false,
      sendText: '获取验证码',
      sendDisabled: false
    }
  },
  onLoad() {
 
  },
  methods: {
    ...mapMutations(['login']),
    // #ifdef MP-WEIXIN
    doWxBind(e) {
      const that = this
      that.wxBinding = true
      uni.showLoading({
        title: '正在绑定'
      })
      console.log("detail", e.detail)
      uni.login({
        provider: 'weixin',
        success: wxres => {
          that.$api.request('user', 'getWxPhone', {
            raw: JSON.stringify(wxres),
            encryptedData: e.detail.encryptedData,
            iv: e.detail.iv
          }, failres => {
            that.wxBinding = false
            that.$api.msg(failres.errmsg)
          }).then(res => {
            that.wxBinding = false
            // 更新storage中userInfo状态
            uni.getStorage({
              key: 'userInfo',
              success: function(res) {
                const userInfo = res.data
                userInfo.status = 1
                uni.setStorage({
                  key: 'userInfo',
                  data: userInfo,
                  success: function() {
                  }
                })
              }
            })
            uni.navigateBack()
          })
        }, fail() {
          uni.navigateBack()
        }
      })
    },
    // #endif
    // #ifndef MP-WEIXIN
    inputChange(e) {
      const key = e.currentTarget.dataset.key
      this[key] = e.detail.value
    },
    doGetVerify() {
      const that = this
      if (!that.phone || that.phone.length !== 11) {
        uni.showToast({
          title: '请输入正确手机号!',
          icon: 'none'
        })
        return
      }
      that.$api.request('user', 'sendVerifyCode', {
        phone: that.phone
      }).then(res => {
        that.sendDisabled = true
        let sec = 60
        const interval = setInterval(() => {
          sec--
          that.sendText = sec + 's后重发'
          if (sec <= 0) {
            that.sendDisabled = false
            that.sendText = '获取验证码'
            clearInterval(interval)
          }
        }, 1000)
      })
    },
    doBind() {
      const that = this
      that.binding = true
      that.$api.request('user', 'bindPhone', {
        phone: that.phone,
        password: that.password,
        verifyCode: that.verifyCode
      }, failres => {
        uni.showToast({
          title: failres.errmsg
        })
        that.binding = false
      }).then(res => {
        that.binding = false
        that.$api.request('user', 'info', failres => {
          uni.getStorage({
            key: 'userInfo',
            success: function(res) {
              const userInfo = res.data
              userInfo.status = 1
              uni.setStorage({
                key: 'userInfo',
                data: userInfo,
                success: function() {
                }
              })
            }
          })
          // #ifndef MP-ALIPAY
          uni.navigateBack()
          // #endif
          // #ifdef MP-ALIPAY
          uni.switchTab({
            url: '/pages/user/user'
          })
          // #endif
        }).then(userRes => {
          uni.setStorageSync('userInfo', userRes.data)
          that.$store.commit('login', userRes.data)
          that.$api.setUserInfo(userRes.data)
          // #ifndef MP-ALIPAY || H5
          uni.navigateBack()
          // #endif
          // #ifdef MP-ALIPAY || H5
          uni.switchTab({
            url: '/pages/user/user'
          })
          // #endif
        })
      })
    }
  // #endif
  }
 
}
</script>
 
<style lang='scss'>
page {
  background: #fff;
}
.container {
  padding-top: 115px;
  position: relative;
  width: 100vw;
  height: 100vh;
        overflow: hidden;
        background: #fff;
    }
 
    .wrapper {
        position: relative;
        z-index: 90;
        background: #fff;
        padding-bottom: 40upx;
    }
 
    .back-btn {
        position: absolute;
        left: 40upx;
        z-index: 9999;
        padding-top: var(--status-bar-height);
        top: 40upx;
        font-size: 40upx;
        color: $font-color-dark;
    }
 
    .left-top-sign {
        font-size: 120upx;
        color: $page-color-base;
        position: relative;
        left: -16upx;
    }
 
    .right-top-sign {
        position: absolute;
        top: 80upx;
        right: -30upx;
        z-index: 95;
 
        &:before,
        &:after {
            display: block;
            content: "";
            width: 400upx;
            height: 80upx;
            background: #b4f3e2;
        }
 
        &:before {
            transform: rotate(50deg);
            border-radius: 0 50px 0 0;
        }
 
        &:after {
            position: absolute;
            right: -198upx;
            top: 0;
            transform: rotate(-50deg);
            border-radius: 50px 0 0 0;
            /* background: pink; */
        }
    }
 
    .left-bottom-sign {
        position: absolute;
        left: -270upx;
        bottom: -320upx;
        border: 100upx solid #d0d1fd;
        border-radius: 50%;
        padding: 180upx;
    }
 
    .welcome {
        position: relative;
        left: 50upx;
        top: -90upx;
        font-size: 46upx;
        color: #555;
        text-shadow: 1px 0px 1px rgba(0, 0, 0, .3);
    }
 
    .input-content {
        padding: 0 60upx;
    }
 
    .input-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 0 0 30upx;
        background: $page-color-light;
        height: 140upx;
        border-radius: 4px;
        margin-bottom: 50upx;
 
        &:last-child {
            margin-bottom: 0;
        }
 
        .tit {
            height: 50upx;
            line-height: 56upx;
            font-size: $font-sm+2upx;
            color: $font-color-base;
        }
 
        input {
            height: 60upx;
            font-size: $font-base + 2upx;
            color: $font-color-dark;
            width: 100%;
        }
 
        .verify-code {
            flex-direction: row;
            display: flex;
            justify-content:end;
            flex-wrap: wrap;
      width: 100%;
        }
    }
 
    .confirm-btn {
        width: 630upx;
        height: 76upx;
        line-height: 76upx;
        border-radius: 50px;
        margin: 70upx auto 0;
        background: $uni-color-primary;
        color: #fff;
        font-size: $font-lg;
 
        &:after {
            border-radius: 100px;
        }
    }
 
    .forget-section {
        font-size: $font-sm+2upx;
        color: $font-color-spec;
        text-align: center;
        margin-top: 40upx;
    }
 
    .register-section {
        position: absolute;
        left: 0;
        bottom: 50upx;
        width: 100%;
        font-size: $font-sm+2upx;
        color: $font-color-base;
        text-align: center;
 
        text {
            color: $font-color-spec;
            margin-left: 10upx;
        }
    }
</style>