123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <template>
- <view v-if="isPhoneBox">
- <view class="mobile-bg" @click="close"></view>
- <view class="mobile-mask animated" :class="{slideInUp:isUp}">
- <view class="info-box">
- <image :src="logoUrl"></image>
- <view class="title">{{$t(`获取授权`)}}</view>
- <view class="txt">{{$t(`获取微信的手机号授权`)}}</view>
- </view>
- <button class="sub_btn" open-type="getPhoneNumber" @getphonenumber="getphonenumber">{{$t(`获取微信手机号`)}}</button>
- </view>
- </view>
- </template>
- <script>
- const app = getApp();
- import Routine from '@/libs/routine';
- import {
- loginMobile,
- registerVerify,
- getCodeApi,
- getUserInfo
- } from "@/api/user";
- import { getLogo, silenceAuth, getUserPhone } from '@/api/public';
- export default{
- name:'routine_phone',
- props:{
- isPhoneBox:{
- type:Boolean,
- default:false,
- },
- logoUrl:{
- type:String,
- default:'',
- },
- authKey:{
- type:String,
- default:'',
- }
- },
- data(){
- return {
- keyCode:'',
- account:'',
- codeNum:'',
- isStatus:false
- }
- },
- mounted() {
- },
- methods:{
- // #ifdef MP
- // 小程序获取手机号码
- getphonenumber(e){
- uni.showLoading({ title: this.$t(`加载中`) });
- Routine.getCode()
- .then(code => {
- this.getUserPhoneNumber(e.detail.encryptedData, e.detail.iv, code);
- })
- .catch(error => {
- uni.hideLoading();
- });
- },
- // 小程序获取手机号码回调
- getUserPhoneNumber(encryptedData, iv, code) {
- getUserPhone({
- encryptedData: encryptedData,
- iv: iv,
- code: code,
- spread_spid: app.globalData.spid,
- spread_code: app.globalData.code,
- key:this.authKey
- })
- .then(res => {
- let time = res.data.expires_time - this.$Cache.time();
- this.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- this.getUserInfo();
- })
- .catch(res => {
- uni.hideLoading();
- });
- },
- /**
- * 获取个人用户信息
- */
- getUserInfo: function() {
- let that = this;
- getUserInfo().then(res => {
- uni.hideLoading();
- that.userInfo = res.data
- that.$store.commit("SETUID", res.data.userId);
- that.$store.commit("UPDATE_USERINFO", res.data);
- that.isStatus = true
- this.close()
- });
- },
- // #endif
- close(){
- this.$emit('close',{isStatus:this.isStatus})
- }
- }
- }
-
- </script>
- <style lang="scss">
- .mobile-bg{
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,0.5);
- }
- .mobile-mask {
- z-index: 20;
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- padding: 67rpx 30rpx;
- background: #fff;
- .info-box{
- display:flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- image{
- width: 150rpx;
- height: 150rpx;
- border-radius: 10rpx;
- }
- .title{
- margin-top: 30rpx;
- margin-bottom: 20rpx;
- font-size: 36rpx;
- }
- .txt{
- font-size: 30rpx;
- color: #868686;
- }
- }
- .sub_btn{
- width: 690rpx;
- height: 86rpx;
- line-height: 86rpx;
- margin-top: 60rpx;
- background: var(--view-theme);
- border-radius: 43rpx;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- }
- }
- .animated{
- animation-duration:.4s
- }
- </style>
|