Commit 5eef305b authored by salitedfish's avatar salitedfish

去掉登录滑块验证

parent 8fc32330
......@@ -72,7 +72,7 @@
用户协议
</div>
</div>
<transition name="fade" mode="out-in">
<!-- <transition name="fade" mode="out-in">
<SlideValidator
v-if="
accountType !== eAccountType.NULL &&
......@@ -83,7 +83,7 @@
@confirm="handleSlideConfirm"
class="my-3"
/>
</transition>
</transition> -->
<transition name="fade" mode="out-in">
<div
v-if="accountType !== eAccountType.NULL && loginWay !== eLoginWay.NULL"
......@@ -151,7 +151,7 @@ import LoginButton from "./components/LoginButton/index.vue";
import UserAgreement from "./UserAgreement.vue";
import Check from "@/components/common/Check/index.vue";
import PhoneInput from "./components/PhoneInput/index.vue";
import SlideValidator from "@/components/common/SlideValidator/index.vue";
// import SlideValidator from "@/components/common/SlideValidator/index.vue";
import notCheckedIcon from "@/assets/icons/not_checked.png";
import checkedIcon from "@/assets/icons/checked.png";
......@@ -199,7 +199,7 @@ export default Vue.extend({
UserAgreement,
Check,
PhoneInput,
SlideValidator,
// SlideValidator,
},
data() {
return {
......@@ -218,7 +218,7 @@ export default Vue.extend({
pwd: "",
overlayShow: false,
rememberPwdChecked: false,
slideConfirmed: false,
slideConfirmed: true,
randomNum: Math.random(),
loading: false,
};
......@@ -242,9 +242,9 @@ export default Vue.extend({
name: "PwdFind",
});
},
handleSlideConfirm() {
this.slideConfirmed = true;
},
// handleSlideConfirm() {
// this.slideConfirmed = true;
// },
handlePwdChange(v: string) {
this.pwd = v;
},
......@@ -283,7 +283,7 @@ export default Vue.extend({
}
this.loading = false;
this.randomNum = Math.random();
this.slideConfirmed = false;
// this.slideConfirmed = false;
},
handleClickUserAgreement() {
// 展示用户协议
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment