123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <template>
- <view class="container flex-items-plus flex-column">
- <view class="login-logoBox">
- <image class="login-logo" src="../../static/images/origin/loginLogo.png"></image>
- </view>
- <view class="loginTitle-text flex-column-plus flex-items font-color-666 fs26">
- <label>为了给您提供更好的服务</label>
- <label>我们需要您的授权哦~</label>
- </view>
- <view>
- <button
- class="loginWxBut fs28 mar-top-100" open-type="getPhoneNumber"
- @getphonenumber="getPhoneNumber"
- >
- 微信手机号授权
- </button>
- </view>
- </view>
- </template>
- <script>
- import { J_STORAGE_KEY } from '../../config/constant'
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- export default {
- data() {
- return {
- avatarUrl: ''
- }
- },
- onLoad(options) {
- this.avatarUrl = uni.getStorageSync('avatarUrl')
- },
- onBackPress(options) {
- this.back()
- return true
- },
- methods: {
- back() {
- uni.switchTab({
- url: 'login'
- })
- },
- getPhoneNumber(e) {
- if (e.detail.errMsg === 'getPhoneNumber:ok') {
- const that = this
- uni.login({
- provider: 'weixin',
- success: (res) => {
- that.code = res.code
- NET.request(API.GetSessionKey, {
- code: that.code
- }, 'POST').then((res1) => {
- NET.request(API.SetWxPhone, {
- wechatOpenId: res1.data.wechatOpenId,
- sessionKey: res1.data.sessionKey,
- encryptedData: e.detail.encryptedData,
- iv: e.detail.iv,
- headImage: this.avatarUrl
- }, 'POST').then((res2) => {
- const item = res2.data
- uni.setStorageSync(J_STORAGE_KEY, item)
- setTimeout(() => {
- this.$switchTab('/pages/tabbar/user/index')
- uni.hideLoading()
- }, 1000)
- })
- .catch((res) => {
- })
- })
- .catch((err) => {
- })
- },
- fail: () => {
- uni.showToast({
- title: '微信登录授权失败',
- icon: 'none'
- })
- }
- })
- } else {
- uni.showToast({
- title: '获取手机授权失败',
- icon: 'none'
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .container {
- .login-logoBox {
- margin-top: 154upx;
- .login-logo {
- width: 250upx;
- height: 250upx;
- }
- }
- .loginTitle-text {
- margin-top: 222upx;
- }
- .loginWxBut {
- background-image: linear-gradient(135deg, #FFA100 10%, #FF7911 100%);
- color: #FFFFFF;
- height: 88upx;
- width: 600upx;
- text-align: center;
- line-height: 88upx;
- border-radius: 88upx;
- margin-top: 49upx;
- }
- .loginBut {
- background-color: #FFFFFF;
- color: #C5AA7B;
- height: 88upx;
- width: 600upx;
- text-align: center;
- line-height: 88upx;
- border-radius: 88upx;
- border: 2upx solid #C5AA7B;
- margin-top: 30upx;
- }
- .register-text {
- color: #47A7EE;
- }
- }
- </style>
|