diff --git a/src/views/authentication/LoginByID.vue b/src/views/authentication/LoginByID.vue
index e5f9511a55f4f468907ac4576d497c95c21eb6b1..ef33dcf05539132cd72b8bf810fa4cd9e16560b0 100644
--- a/src/views/authentication/LoginByID.vue
+++ b/src/views/authentication/LoginByID.vue
@@ -30,8 +30,8 @@
-
-
+
+
@@ -48,14 +48,14 @@
-->
-
-
+
+
@@ -70,11 +70,11 @@
确认密码
-
+
-
-
-
+
+
+
@@ -125,6 +125,7 @@ export default class ForgetPassView extends Vue {
radio: string = "0"
checked: boolean = false;
passwordType = "password"
+ passwordTypeNext = "password"
showCode = false;
//方法
@@ -138,7 +139,9 @@ export default class ForgetPassView extends Vue {
switchPasswordType() {
this.passwordType = this.passwordType === 'password' ? 'text' : 'password'
}
-
+ switchPasswordTypeNext() {
+ this.passwordTypeNext = this.passwordTypeNext === 'password' ? 'text' : 'password'
+ }
//手机号
verifyPhone(s:string) {
return /^1[3-9]\d{9}$/.test(s) // 返回true或false