Browse Source

需求 2023-09-01 放弃记住账号功能,保护上一个考试的人的身份证号等隐私信息

刘洋 1 year ago
parent
commit
9b28e7eeee
1 changed files with 8 additions and 7 deletions
  1. 8 7
      src/features/UserLogin/UserLogin.vue

+ 8 - 7
src/features/UserLogin/UserLogin.vue

@@ -238,13 +238,14 @@ watch(
   }
 );
 watch([formValue], () => (errorInfo = ""));
-watch(
-  () => formValue.accountType,
-  () => {
-    formValue.accountValue = localStorage.getItem(formValue.accountType) || "";
-  },
-  { immediate: true }
-);
+//需求 2023-09-01 放弃记住账号功能,保护上一个考试的人的身份证号等隐私信息
+// watch(
+//   () => formValue.accountType,
+//   () => {
+//     formValue.accountValue = localStorage.getItem(formValue.accountType) || "";
+//   },
+//   { immediate: true }
+// );
 //#endregion
 
 //#region 极验