|
@@ -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 极验
|