vue 实现用户登录方式的切换功能
程序员文章站
2022-07-06 16:47:43
一、vue 实现用户登录方式的切换在 data 当中,定义一个标识符 loginway,用来表示是用短信登录还是密码登录,true代表短信登录,false 代表密码登录,代码如下所示:data() {...
一、vue 实现用户登录方式的切换
在 data 当中,定义一个标识符 loginway,用来表示是用短信登录还是密码登录,true代表短信登录,false 代表密码登录,代码如下所示:
data() { return { loginway: true } }
在短信登录和密码登录上,进行动态样式绑定,loginway为true就短信登录绑定动态样式on,loginway为false就密码登录绑定动态样式on,并且也绑定点击事件,进行设置 loginway的true和false,代码如下所示:
<h2 class="login_logo">用户登录</h2> <div class="login_header_title"> <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" :class="{on: loginway}" @click="loginway = true">短信登录</a> <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" :class="{on: !loginway}" @click="loginway = false">密码登录</a> </div>
对于短信登录和密码登录的内容,同样也设置动态样式绑定。当为loginway为true 的时候设置短信登录为on,当为loginway为false 的时候设置密码登录为on,代码如下所示:
<div :class="{on: loginway}"> <section class="login_message"> <input type="tel" maxlength="11" placeholder="手机号"> <button disabled="disabled" class="get_verification">获取验证码</button> </section> <section class="login_verification"> <input type="tel" maxlength="8" placeholder="验证码"> </section> <section class="login_hint"> 温馨提示:未注册帐号的手机号,登录时将自动注册,且代表已同意 <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" >《用户服务协议》</a> </section> </div> <div :class="{on: !loginway}"> <section> <section class="login_message"> <input type="tel" maxlength="11" placeholder="手机/邮箱/用户名"> </section> <section class="login_verification"> <input type="tel" maxlength="8" placeholder="密码"> <div class="switch_button off"> <div class="switch_circle"></div> <span class="switch_text">...</span> </div> </section> <section class="login_message"> <input type="text" maxlength="11" placeholder="验证码"> <img class="get_verification" src="./images/captcha.svg" alt="captcha"> </section> </section> </div>
显示效果如下所示:
总结
到此这篇关于vue 实现用户登录方式的切换功能的文章就介绍到这了,更多相关vue 登录方式切换内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: Ajax实现图片上传并预览功能
推荐阅读
-
Laravel 框架基于自带的用户系统实现登录注册及错误处理功能分析
-
使用vue-router beforEach实现判断用户登录跳转路由筛选功能
-
使用vue-route 的 beforeEach 实现导航守卫(路由跳转前验证登录)功能
-
基于Vue+elementUI实现动态表单的校验功能(根据条件动态切换校验格式)
-
Python实现的用户登录系统功能示例
-
用Python实现web端用户登录和注册功能的教程
-
Laravel 框架基于自带的用户系统实现登录注册及错误处理功能分析
-
PHP实现用户异地登录提醒功能的方法【基于thinkPHP框架】
-
PHP cookie,session的使用与用户自动登录功能实现方法分析
-
使用Bootstrap和Vue实现用户信息的编辑删除功能