userinfo.vue 5.6 KB
Newer Older
1 2 3
<template>
	<view>
		<uni-list>
4
			<uni-list-item class="item" link>
DCloud_JSON's avatar
DCloud_JSON 已提交
5
				<view slot="body" class="item">
6 7 8 9 10
					
					<text>头像</text>
					<uni-file-picker file-mediatype="image" return-type="object" v-model="userInfo.avatar" />
						<!-- <uni-file-picke disable-preview :del-icon="false" return-type="object" fileMediatype="image" /> -->
						<!-- <image class="avatarUrl" :src="userInfo.avatar||nullAvatarUrl" mode="widthFix"></image> -->
11 12
				</view>
			</uni-list-item>
13 14 15 16
			<uni-list-item class="item" @click="setNickname('')" title="昵称" :rightText="userInfo.nickname||'未设置'" link>
			</uni-list-item>
			<uni-list-item class="item" @click="bindMobile" title="手机号" :rightText="userInfo.mobile||'未绑定'" link>
			</uni-list-item>
17 18
		</uni-list>
		<uni-popup ref="dialog" type="dialog">
19 20
			<uni-popup-dialog mode="input" :value="userInfo.nickname" @confirm="setNickname" title="设置昵称"
				placeholder="请输入要设置的昵称">
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
			</uni-popup-dialog>
		</uni-popup>
	</view>
</template>
<script>
	import {
		mapMutations,
		mapGetters
	} from 'vuex';
	const db = uniCloud.database();
	const usersTable = db.collection('uni-id-users')
	export default {
		data() {
			return {
				nullAvatarUrl: '/static/uni-center/logo.png',
				univerifyStyle: {
					authButton: {
						"title": "本机号码一键绑定", // 授权按钮文案
					},
					otherLoginButton: {
						"title": "其他号码绑定",
					}
				}
			}
		},
		computed: {
			...mapGetters({
				userInfo: 'user/info',
				login: 'user/hasLogin'
			})
		},
		methods: {
			...mapMutations({
				setUserInfo: 'user/login'
			}),
			bindMobile() {
				// #ifdef APP-PLUS
				uni.preLogin({
					provider: 'univerify',
					success: this.univerify(), //预登录成功
61
					fail: (res) => { // 预登录失败
62
						// 不显示一键登录选项(或置灰)
63
						console.log(res)
64
						this.bindMobileBySmsCode()
65 66 67
					}
				})
				// #endif
68
				// #ifndef APP-PLUS
69 70
				this.bindMobileBySmsCode()
				//...去用验证码绑定
71 72 73 74 75 76 77 78
				// #endif
			},
			univerify() {
				uni.login({
					"provider": 'univerify',
					"univerifyStyle": this.univerifyStyle,
					success: async e => {
						console.log(e.authResult);
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
						// this.-request('uni-id-cf/bind_mobile_by_univerify',
						// 	e.authResult,
						// 	result=>
						// 	{
						// 		console.log(result);
						// 		if(result.code===0){
						// 			this.setUserInfo({"mobile":result.mobile})
						// 			uni.closeAuthView()
						// 		}else{
						// 			uni.showModal({
						// 				content: JSON.stringify(result.msg),
						// 				showCancel: false,
						// 				complete() {
						// 					uni.closeAuthView()
						// 				}
						// 			});
						// 		}
						// 	}
97 98 99 100 101 102 103 104 105 106
						// )
						uniCloud.callFunction({
							name: 'uni-id-cf',
							data: {
								action: 'bind_mobile_by_univerify',
								params: e.authResult,
							},
							success: ({
								result
							}) => {
107
								console.log(result);
108 109 110 111
								if (result.code === 0) {
									this.setUserInfo({
										"mobile": result.mobile
									})
112
									uni.closeAuthView()
113
								} else {
114 115 116 117 118 119 120
									uni.showModal({
										content: JSON.stringify(result.msg),
										showCancel: false,
										complete() {
											uni.closeAuthView()
										}
									});
121 122
								}
							}
123
						})
124
					},
125 126
					fail: (err) => {
						console.log(err);
127
						if (err.code == '30002') {
128 129
							this.bindMobileBySmsCode()
						}
130 131 132 133
					}
				})
			},
			bindMobileBySmsCode() {
134
				uni.navigateTo({
135
					url: '/pages/ucenter/userinfo/bind-mobile/bind-mobile'
136 137 138
				})
			},
			setNickname(nickname) {
139
				console.log(9527, nickname);
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
				if (nickname) {
					usersTable.where('_id==$env.uid').update({
						nickname
					}).then(e => {
						console.log(e);
						if (e.result.updated) {
							uni.showToast({
								title: '更新成功',
								icon: 'none'
							});
							this.setUserInfo({
								nickname
							});
						} else {
							uni.showToast({
								title: '没有变化',
								icon: 'none'
							});
						}
					})
					this.$refs.dialog.close()
				} else {
					this.$refs.dialog.open()
				}
			},
			setAvatar() {
				uni.chooseImage({
					count: 1,
					success: (res) => {
						// 头像剪裁尺寸
						let options = {
							width: 600,
							height: 600
						}
						// 剪裁并上传头像
						uni.navigateTo({
176
							url: '/pages/ucenter/userinfo/uploadCutImageToUnicloud?path=' +
177
								res.tempFilePaths[0] +
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
								`&options=${JSON.stringify(options)}`,
							animationType: "fade-in",
							events: {
								uploadAvatarAfter: ({
									url
								}) => {
									console.log(url);
									// 使用 clientDB 提交数据
									usersTable.where('_id==$env.uid').update({
										avatar: url
									}).then((res) => {
										console.log(res);
										uni.showToast({
											icon: 'none',
											title: '修改成功'
										})
										this.setUserInfo({
											avatar: url
										});
									}).catch((err) => {
										uni.showModal({
											content: err.message ||
												'请求服务失败',
											showCancel: false
										})
									}).finally(() => {
										uni.hideLoading()
									})
								}
							}
						});
					}
				})
			},
		}
	}
</script>
<style>
	.item {
		width: 750rpx;
		flex-direction: row;
		justify-content: space-between;
220
		align-items: center;
221
	}
222

223 224
	.avatarUrl {
		width: 50px;
225
		height: 50px;
226
		border-radius: 6px;
227
	}
228
</style>