settings.vue 5.3 KB
Newer Older
芊里 已提交
1 2 3 4 5 6 7 8 9
<template>
	<view class="content">
		<!-- 功能列表 -->
		<uni-list class="content">
			<uni-list-item v-for="(item,index) in agreeList" :key="index" :title="item.title" :to="item.to"
				:clickable="true" @click="itemClick(item)" :showSwitch="item.showSwitch" :switchChecked="item.isChecked"
				:link="item.to"></uni-list-item>
		</uni-list>
		<!-- 退出按钮 -->
芊里 已提交
10
		<button class="bottom-back" @click="clickLogout"><text class="bottom-back-text">退出登录</text></button>
芊里 已提交
11 12 13 14 15 16 17
	</view>
</template>

<script>
	import {
		isOn,
		setting
L
12  
linju 已提交
18
	} from './dc-push/push.js';
芊里 已提交
19
	import {
芊里 已提交
20 21
		mapMutations,
		mapGetters
芊里 已提交
22 23 24 25 26 27
	} from 'vuex';
	export default {
		data() {
			return {
				agreeList: [{
						title: '个人资料',
芊里 已提交
28
						event:'toEdit'
芊里 已提交
29 30
					},
					{
芊里 已提交
31 32
						title: '修改密码',
						event:'changePwd'
test  
芊里 已提交
33 34 35 36 37
					},
					// {
					// 	title: '注销用户',
					// 	event: ''
					// },
芊里 已提交
38 39 40 41 42 43 44 45
					//#ifdef APP-PLUS
					{
						title: '推送功能',
						name: 'push',
						event: 'openSetting',
						isChecked: false,
						showSwitch: true
					},
test  
芊里 已提交
46 47 48 49
					// {
					// 	title: '清理缓存',
					// 	event: ''
					// },
芊里 已提交
50 51 52 53
					//#endif

				]
			}
芊里 已提交
54 55 56 57 58
		},
		computed:{
			...mapGetters({
				'userInfo':'user/info'
			})
芊里 已提交
59 60 61 62 63 64 65 66 67 68 69
		},
		onLoad() {
			this.initSoterAuthentication();
		},
		onShow() {
			this.checkPush();
		},
		methods: {
			...mapMutations({
				logout: 'user/logout'
			}),
芊里 已提交
70 71 72 73 74
			toEdit(){
				uni.navigateTo({
					url: '../edit/edit'
				});
			},
芊里 已提交
75
			changePwd(){
芊里 已提交
76
				if(this.userInfo){
芊里 已提交
77 78 79 80 81 82 83 84 85 86
					uni.navigateTo({
						url:'/uni_modules/uni-login-page/pages/index/pwd-retrieve?phoneNumber='+ this.userInfo.phone +'&phoneArea=+86'
					});
				} else {
					uni.showToast({
						title: '请先登录',
						icon: 'none'
					});
				}
			},
芊里 已提交
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
			checkPush(){
				// 手机端获取推送是否开启
				//#ifdef APP-PLUS
				let pushIsOn = isOn();
				this.agreeList.forEach(item => {
					item.name == 'push' ? (item.isChecked = pushIsOn) : '';
				})
				//#endif
			},
			/**
			 * 添加生物认证选项
			 */
			initSoterAuthentication() {
				// #ifdef APP-PLUS || MP-WEIXIN

				let checkAuthModeList = [{
					title: '指纹解锁',
					name: 'fingerPrint',
					event: 'startSoterAuthentication'
				}, {
					title: '人脸解锁',
					name: 'facial',
					event: 'startSoterAuthentication'
				}];
				uni.checkIsSupportSoterAuthentication({
					success: (res) => {
						res.supportMode.forEach(item => {
							this.agreeList.push(checkAuthModeList.find(mode => mode.name == item));
						})
					},
					fail: (err) => {
						reject(err);
					}
				})
				// #endif
			},
			/**
			 * 开始生物认证
			 */
			startSoterAuthentication(item) {
				// 检查是否开启认证
				this.checkIsSoterEnrolledInDevice(item)
				.then(()=>{
					// 开始认证
					uni.startSoterAuthentication({
						requestAuthModes: [item.name],
						challenge: '123456',	// 微信端挑战因子
						authContent: `请用${item.title}`,
芊里 已提交
135
						success:(res)=> {
芊里 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
							if(res.errCode == 0){
								/**
								 * 验证成功后开启自己的业务逻辑
								 * 
								 * app端以此为依据 验证成功
								 * 
								 * 微信小程序需要再次通过后台验证resultJSON与resultJSONSignature获取最终结果
								 */
								return uni.showToast({
									title: `${item.title}成功`,
									icon: 'none'
								});
							}
							uni.showToast({
								title: '认证失败请重试',
								icon: 'none'
							});
						},
芊里 已提交
154
						fail:(err)=> {
芊里 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
							uni.showToast({
								title: `认证失败:${err.errCode}`,
								icon: 'none'
							});
						}
					})
				})
			},
			checkIsSoterEnrolledInDevice(mode){
				return new Promise((resolve, reject)=>{
					uni.checkIsSoterEnrolledInDevice({
						checkAuthMode:mode.name,
						success: (res) => {
							if(res.isEnrolled){
								return resolve(res);
							}
							uni.showToast({
芊里 已提交
172
								title: `设备未开启${mode.title}`,
芊里 已提交
173 174 175 176 177 178
								icon: 'none'
							});
							reject(res);
						},
						fail: (err) => {
							uni.showToast({
芊里 已提交
179
								title: `${mode.title}失败`,
芊里 已提交
180 181 182 183 184 185 186 187
								icon: 'none'
							});
							reject(err);
						}
					})
				})
			},
			clickLogout() {
芊里 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
				
				uni.showModal({
					title: '提示',
					content: '是否退出登录',
					cancelText: '取消',
					confirmText: '确定',
					success: res => {
						if(res.confirm){
							this.logout();
							uni.navigateBack();
						}
					},
					fail: () => {},
					complete: () => {}
				});
芊里 已提交
203
			},
芊里 已提交
204
			itemClick(item) {
芊里 已提交
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
				if (!item.to && item.event) {
					this[item.event](item);
				}
			},
			/**
			 * 打开设置页面
			 */
			openSetting() {
				setting();
			}
		}
	}
</script>

<style>
	/* #ifndef APP-NVUE */
	page {
		flex: 1;
		width: 100%;
		height: 100%;
	}
	uni-button:after{
		border: none;
		border-radius: 0;
	}
	/* #endif */
	.content {
		/* #ifndef APP-NVUE */
		display: flex;
		width: 100%;
		height: 100%;
		/* #endif */
		flex-direction: column;
		flex: 1;
	}

	.bottom-back {
		width: 750rpx;
		height: 120rpx;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: column;
		justify-content: center;
		align-items: center;
		/* #ifndef APP-NVUE */
		border: none;
		/* #endif */
		border-width: 0;
		border-radius: 0;
	}

	.bottom-back-text {
		font-size: 40rpx;
		color: #DD524D;
	}
</style>