uni-quick-login.vue 6.6 KB
Newer Older
L
linju 已提交
1
<template>
L
213  
linju 已提交
2
	<view class="quick-login-box">
L
23  
linju 已提交
3 4 5
		<view class="item" v-for="({id,logo,text,path},index) in servicesList" :key="index" @click="path?to(path):login(id,false)">
			<image class="logo" :src="logo" mode="widthFix"></image>
			<text class="login-title">{{text}}</text>
L
linju 已提交
6 7 8
		</view>
	</view>
</template>
L
123  
linju 已提交
9
<script>
L
23  
linju 已提交
10 11
	import {mapGetters,mapMutations} from 'vuex';
	//前一个窗口的页面地址。控制点击切换快捷登陆方式是创建还是返回
L
123  
linju 已提交
12
	export default {
L
linju 已提交
13
		data() {
L
213  
linju 已提交
14
			return {
L
linju 已提交
15 16 17
				config: {
					"weixin": {
						"text": "微信登陆",
L
linju 已提交
18
						"logo": "../../static/login/weixin.png",
L
123  
linju 已提交
19
						"isChecked":true
L
linju 已提交
20
					},
L
123  
linju 已提交
21 22
					"apple": {
						"text": "苹果登陆",
L
linju 已提交
23
						"logo": "../../static/login/apple.png",
L
123  
linju 已提交
24 25 26 27
						"isChecked":true
					},
					"univerify": {
						"text": "一键登陆",
L
linju 已提交
28
						"logo": "../../static/login/univerify.png",
L
123  
linju 已提交
29 30
						"isChecked":true
					},
L
linju 已提交
31 32
					"qq": {
						"text": "QQ登陆",
L
linju 已提交
33
						"logo": "../../static/login/qq.png",
L
123  
linju 已提交
34
						"isChecked":false //暂未提供该登陆方式的接口示例
L
linju 已提交
35 36 37
					},
					"xiaomi": {
						"text": "小米登陆",
L
linju 已提交
38
						"logo": "../../static/login/qq.png",
L
123  
linju 已提交
39
						"isChecked":false //暂未提供该登陆方式的接口示例
L
linju 已提交
40
					},
L
23  
linju 已提交
41 42
					"sinaweibo": {
						"text": "微博登录",
L
linju 已提交
43
						"logo": "../../static/login/weibo.png",
L
23  
linju 已提交
44 45
						"isChecked":false //暂未提供该登陆方式的接口示例
					}
L
linju 已提交
46
				},
L
23  
linju 已提交
47 48 49
				servicesList:[
					{
						"text": "账号登陆",
L
linju 已提交
50
						"logo": "../../static/login/db.png",
L
23  
linju 已提交
51 52 53 54
						"path":"/uni_modules/uni-login-page/pages/pwd-login/pwd-login"
					},
					{
						"text": "短信登陆",
L
linju 已提交
55
						"logo": "../../static/login/smsCode.png",
L
23  
linju 已提交
56 57 58 59
						"path":"/uni_modules/uni-login-page/pages/index/index"
					}
				],
				univerifyStyle: { //一键登陆弹出窗的样式配置参数
L
213  
linju 已提交
60
					"fullScreen": true, // 是否全屏显示,true表示全屏模式,false表示非全屏模式,默认值为false。
L
linju 已提交
61 62 63
					"backgroundColor": "#ffffff", // 授权页面背景颜色,默认值:#ffffff  
				}
			}
L
23  
linju 已提交
64 65 66 67 68 69 70 71 72
		},
		created() {
			let servicesList = this.servicesList
			//去掉当前页面对应的登陆选项
			for (var i = 0; i < servicesList.length; i++) {
				if(servicesList[i].path == this.getRoute(1)){
					servicesList.splice(i,1)
				}
			}
L
linju 已提交
73
		},
L
123  
linju 已提交
74 75 76 77 78
		mounted() {
			//获取当前环境能用的快捷登陆方式
			// #ifdef APP-PLUS
				plus.oauth.getServices(oauthServices=>{
					this.oauthServices = oauthServices
L
23  
linju 已提交
79 80 81 82 83
					oauthServices.forEach(({id})=>{
						if(this.config[id].isChecked){
							this.servicesList.push({...this.config[id],id})
						}
					})
L
23  
linju 已提交
84
					// console.log(oauthServices);
L
123  
linju 已提交
85
				},err=>{
L
123  
linju 已提交
86
					uni.hideLoading()
L
123  
linju 已提交
87 88 89 90 91 92 93 94
					uni.showModal({
						title: '获取服务供应商失败:' +JSON.stringify(err),
						showCancel: false,
						confirmText: '知道了'
					});
					console.error('获取服务供应商失败:' + JSON.stringify(err));
				})
			// #endif
L
linju 已提交
95
		},
L
123  
linju 已提交
96 97 98
		methods: {
			...mapMutations({
				setUserInfo: 'user/login'
L
23  
linju 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
			}),
			getRoute(n=0){
				let pages = getCurrentPages();
				console.log('route-pages-length',pages.length);
				if(n>pages.length){ return '' }
				return '/'+pages[pages.length - n].route
			},
			to(path){
				console.log('比较',this.getRoute(2),path)
				if(this.getRoute(2)==path){ // 控制路由是重新打开还是返回,避免重复打开页面
					uni.navigateBack();
				}else{
					uni.navigateTo({url:path})
				}
			},
			login(type,navigateBack=true) {
				console.log(arguments);
				console.log('services',services);
L
123  
linju 已提交
117
				let oauthService = this.oauthServices.find((service) => service.id == type)
L
123  
linju 已提交
118
				console.log(type);
DCloud_JSON's avatar
DCloud_JSON 已提交
119 120
				
				// #ifdef APP-PLUS
L
123  
linju 已提交
121
				//请勿直接使用前端获取的unionid或openid直接用于登陆,前端的数据都是不可靠的
L
123  
linju 已提交
122
				if(type=='weixin'){
DCloud_JSON's avatar
DCloud_JSON 已提交
123
					return	oauthService.authorize(({code})=>{
L
123  
linju 已提交
124 125
						console.log(code);
						this.quickLogin({code},type)
L
21  
linju 已提交
126 127
					},
					err=>{
L
123  
linju 已提交
128
						uni.hideLoading()
L
21  
linju 已提交
129
						console.log(err);
L
123  
linju 已提交
130 131
					})
				}
DCloud_JSON's avatar
DCloud_JSON 已提交
132
				// #endif
L
123  
linju 已提交
133
				
L
linju 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147
				uni.login({
					"provider": type,
					"univerifyStyle":this.univerifyStyle,
					success:async e => {
						console.log(e);
						if(type=='apple'){
							let res = await this.getUserInfo({provider:"apple"})
							Object.assign(e.authResult,res.userInfo)
						}
						this.quickLogin(e.authResult,type)
					},
					fail: (err) => {
						uni.hideLoading()
						console.log(err);
L
23  
linju 已提交
148 149 150 151 152 153
						
						if(type=='univerify'){
							if(err.metadata.error_data){
								uni.showToast({
									title: "一键登陆:"+err.metadata.error_data,
									icon: 'none'
L
123  
linju 已提交
154
								});
L
23  
linju 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
							}
							switch (err.errCode){
								case 30002:
									console.log('在一键登陆界面,点击其他登陆方式');
									break;
								case 30003:
									console.log('关闭了登陆');
									if(navigateBack){ uni.navigateBack() }
									break;
								case 30006:
									uni.showModal({
										title: "登陆服务初始化错误",
										content:err.metadata.error_data,
										showCancel: false,
										confirmText: '知道了',
									});
									break;
								default:
									break;
							}
L
linju 已提交
175 176
						}
					}
177
				})
L
linju 已提交
178
			},
L
123  
linju 已提交
179 180 181 182 183 184 185 186
			quickLogin(params,type){//联网验证登陆
				console.log(params,type);
				this.request('user-center/login_by_'+type,params,(data,result)=>{
					console.log(result);
					if(result.code === 0){
						uni.setStorageSync('uni_id_uid', result.uid)
						uni.setStorageSync('uni_id_token', result.token)
						uni.setStorageSync('uni_id_token_expired', result.tokenExpired)
L
23  
linju 已提交
187

L
123  
linju 已提交
188 189 190 191
						delete result.userInfo.token
						this.setUserInfo(result.userInfo)
						if(type=='univerify'){
							uni.closeAuthView()
L
linju 已提交
192
						}
L
123  
linju 已提交
193 194 195 196
						uni.showToast({
							title: '登陆成功',
							icon: 'none'
						});
L
21  
linju 已提交
197
						uni.hideLoading()
L
23  
linju 已提交
198 199 200 201 202 203 204 205 206
						var delta = 0
						//判断需要返回几层
						let pages = getCurrentPages();
						pages.forEach((page,index)=>{
							if(pages[pages.length-index-1].route.split('/')[1] == 'uni-login-page'){
								delta ++
							}
						})
						uni.navigateBack({delta})
L
linju 已提交
207
					}
L
linju 已提交
208
				},{showLoading:true})
L
linju 已提交
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
			},
			async getUserInfo(e){
				return new Promise((resolve, reject)=>{
					uni.getUserInfo({
						...e,
						success: (res) => {
							resolve(res);
						},
						fail: (err) => {
							uni.showModal({
								content: JSON.stringify(err),
								showCancel: false
							});
							reject(err);
						}
					})
				})
			}
		}
	}
</script>

<style scoped>
	.quick-login-box {
		flex-direction: row;
		width: 750rpx;
		justify-content: space-around;
	}
	.item {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 200rpx;
	}

	.logo {
		width: 60rpx;
L
linju 已提交
246
		height: 60rpx;
L
linju 已提交
247 248 249 250 251 252
	}

	.login-title {
		font-size: 26rpx;
	}
</style>