소스 검색

登录页面读取登录过的密码

guocz 2 년 전
부모
커밋
365d8d9f4d
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 15 0
      pages/login/login.vue

+ 15 - 0
pages/login/login.vue

@@ -52,6 +52,21 @@ export default {
 	},
 	computed: {
 		
+	},
+	onLoad() {
+		let that = this;
+		uni.getStorage({
+			key: 'session_login_info',
+			success: function (res) {
+				let loginInfo = JSON.parse(res.data);
+				if(loginInfo.officerNo&&loginInfo.loginPwd){
+					that.form.officerNo = loginInfo.officerNo;
+					that.form.loginPwd = loginInfo.loginPwd;
+				}
+				console.log(loginInfo.officerNo);
+				console.log(loginInfo.loginPwd);
+			}
+		});	
 	},
 	onReady() {
 		this.$refs.uForm.setRules(this.rules);