电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術文章
文章詳情頁

vue實現登錄驗證碼

瀏覽:35日期:2023-02-15 08:45:57

本文實例為大家分享了vue實現登錄驗證碼的具體代碼,供大家參考,具體內容如下

先來demo效果圖

vue實現登錄驗證碼

canvas驗證碼組件(可直接復制,無需改動)

<template> <div class='s-canvas'><canvas : :height='contentHeight'></canvas> </div></template> <script> export default {name: 'SIdentify',props: { identifyCode: {type: String,default: ’1234’ }, fontSizeMin: {type: Number,default: 25 }, fontSizeMax: {type: Number,default: 30 }, backgroundColorMin: {type: Number,default: 255 }, backgroundColorMax: {type: Number,default: 255 }, colorMin: {type: Number,default: 0 }, colorMax: {type: Number,default: 160 }, lineColorMin: {type: Number,default: 100 },lineColorMax: {type: Number,default: 255 }, dotColorMin: {type: Number,default: 0 }, dotColorMax: {type: Number,default: 255 }, contentWidth: {type: Number,default: 112 }, contentHeight: {type: Number,default: 31 }},methods: { // 生成一個隨機數 randomNum(min, max) {return Math.floor(Math.random() * (max - min) + min) }, // 生成一個隨機的顏色 randomColor(min, max) {let r = this.randomNum(min, max)let g = this.randomNum(min, max)let b = this.randomNum(min, max)return ’rgb(’ + r + ’,’ + g + ’,’ + b + ’)’ }, drawPic() {let canvas = document.getElementById(’s-canvas’)let ctx = canvas.getContext(’2d’)ctx.textBaseline = ’bottom’// 繪制背景ctx.fillStyle = this.randomColor(this.backgroundColorMin, this.backgroundColorMax)ctx.fillRect(0, 0, this.contentWidth, this.contentHeight)// 繪制文字for (let i = 0; i < this.identifyCode.length; i++) { this.drawText(ctx, this.identifyCode[i], i)}this.drawLine(ctx)this.drawDot(ctx) }, drawText(ctx, txt, i) {ctx.fillStyle = this.randomColor(this.colorMin, this.colorMax)ctx.font = this.randomNum(this.fontSizeMin, this.fontSizeMax) + ’px SimHei’let x = (i + 1) * (this.contentWidth / (this.identifyCode.length + 1))let y = this.randomNum(this.fontSizeMax, this.contentHeight - 5)var deg = this.randomNum(-45, 45)// 修改坐標原點和旋轉角度ctx.translate(x, y)ctx.rotate(deg * Math.PI / 180)ctx.fillText(txt, 0, 0)// 恢復坐標原點和旋轉角度ctx.rotate(-deg * Math.PI / 180)ctx.translate(-x, -y) }, drawLine(ctx) {// 繪制干擾線for (let i = 0; i < 5; i++) { ctx.strokeStyle = this.randomColor(this.lineColorMin, this.lineColorMax) ctx.beginPath() ctx.moveTo(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight)) ctx.lineTo(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight)) ctx.stroke()} }, drawDot(ctx) {// 繪制干擾點for (let i = 0; i < 80; i++) { ctx.fillStyle = this.randomColor(0, 255) ctx.beginPath() ctx.arc(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight), 1, 0, 2 * Math.PI) ctx.fill()} }},watch: { identifyCode() {this.drawPic() }},mounted() { this.drawPic()} }</script> <style scoped> .s-canvas {height: 38px; } .s-canvas canvas{margin-top: 1px;margin-left: 8px; }</style>

login頁面的html部分,按需改動

vue實現登錄驗證碼

引入驗證碼組件

vue實現登錄驗證碼

methods方法

vue實現登錄驗證碼

login頁面完整代碼

<style lang='less'> @import ’./login.less’;</style> <template> <div @keydown.enter='handleSubmit'><div class='login-con'> <Card :bordered='false' style='width: 350px;height: 380px'><div class='form-con'> <Tabs value='name1' :animated='false'><TabPane label='登錄' name='name1'> <Form ref='loginForm' :model='form' :rules='rules' :label- inline><FormItem label='帳號' prop='username'> <Input v-model='form.username' placeholder='請輸入帳號' ref='input' clearable /></FormItem><FormItem label='密碼' prop='password'> <Input v-model='form.password' placeholder='請輸入密碼' clearable /></FormItem><FormItem label='驗證碼' prop='verificationCode'> <Input v-model='form.verificationCode' placeholder='請輸入驗證碼' clearable /> <div @click='refreshCode' style='margin-top: 20px'><!--驗證碼組件--><s-identify :identifyCode='identifyCode'></s-identify> </div></FormItem><div style='text-align: center'> <Button @click='handleSubmit' type='primary' style='margin-right: 20px'>登錄</Button></div> </Form></TabPane><TabPane label='注冊' name='name2'> <Form ref='formValidate' :model='formValidate' :rules='ruleValidate' :label- inline><FormItem label='帳號' prop='username'> <Input v-model='formValidate.username' placeholder='請輸入帳號' ref='input' clearable /></FormItem><FormItem label='密碼' prop='password'> <Input v-model='formValidate.password' placeholder='請輸入密碼' clearable /></FormItem><FormItem label='手機號' prop='mobile'> <Input v-model='formValidate.mobile' placeholder='請輸入手機號' clearable /></FormItem><FormItem label='短信驗證碼' prop='header'> <Input v-model='formValidate.header' placeholder='短信驗證碼' /> <Button type='primary' size='small' @click='getCode' :disabled='codeDisabled'>{{codeMsg}}</Button></FormItem><div style='text-align: center'> <Button type='primary' @click='register(’formValidate’)'>注冊</Button></div> </Form></TabPane> </Tabs></div> </Card></div><!--<vue-particlescolor='#FF4500':particleOpacity='0.7':particlesNumber='300'shapeType='circle':particleSize='7'linesColor='#00FF00':linesWidth='2':lineLinked='true':lineOpacity='0.4':linesDistance='150':moveSpeed='4':hoverEffect='true'hoverMode='grab':clickEffect='true'clickMode='repulse'></vue-particles>--> </div></template> <script> import Cookies from ’js-cookie’; import {apiRequest, login, getCode} from ’@/service/service’; import SIdentify from ’@/components/SIdentify’; export default {components: { SIdentify },name: ’login’,data() { return {form: {},formValidate: {},rules: { username: [{required: true, message: ’登錄用戶名不能為空’, trigger: ’blur’} ], password: [{required: true, message: ’登錄密碼不能為空’, trigger: ’blur’} ], verificationCode: [{required: true, message: ’驗證碼不能為空’, trigger: ’blur’} ]},ruleValidate: { username: [{required: true, message: ’登錄用戶名不能為空’, trigger: ’blur’} ], password: [{required: true, message: ’登錄密碼不能為空’, trigger: ’blur’} ], mobile: [{required: true, message: ’手機號不能為空’, trigger: ’blur’} ], header: [{required: true, message: ’短信驗證碼不能為空’, trigger: ’blur’} ]},img:’../../static/grey_wolf.jpg’,// 是否禁用按鈕codeDisabled: false,// 倒計時秒數countdown: 60,// 按鈕上的文字codeMsg: ’獲取驗證碼’,// 定時器timer: null,identifyCode: ’’,identifyCodes: ’1234567890abcdefjhijklinopqrsduvwxyz’, };},methods: { // 刷新驗證碼 refreshCode () {this.identifyCode = ’’this.makeCode(this.identifyCodes,4); }, makeCode (o,l) {for (let i = 0; i < l; i++) { this.identifyCode += this.identifyCodes[this.randomNum(0, this.identifyCodes.length)]} }, randomNum (min, max) {return Math.floor(Math.random() * (max - min) + min) }, // 獲取短信驗證碼 getCode() {// 驗證碼60秒倒計時if (!this.timer) { this.getValidStr(); this.timer = setInterval(this.getValidStr, 1000);}apiRequest(this, getCode(this.form.mobile), response => {}); }, getValidStr(){if (this.countdown > 0 && this.countdown <= 60) { this.countdown--; if (this.countdown !== 0) {this.codeMsg = '重新發送(' + this.countdown + ')';this.codeDisabled = true; } else {clearInterval(this.timer);this.codeMsg = '獲取驗證碼';this.countdown = 60;this.timer = null;this.codeDisabled = false; }} }, handleSubmit() {this.$refs.loginForm.validate((valid) => { if (valid) {//登錄密碼做MD5加密let password = this.$copyto.md5(this.form.password);//登錄接口請求apiRequest(this, login(this.form.username, password), response => { this.$store.commit(’setUserInfo’, response.data); Cookies.set(’user’, this.form.username); Cookies.set(’userId’, response.data.id); localStorage.sessionId = response.sessionId this.$store.commit(’setAvator’, ’’); if (this.form.userName === ’admin’) {Cookies.set(’access’, 0); } else {Cookies.set(’access’, 1); } this.$router.push({name: ’home_index’});}); }}); }, register() { }},mounted () { // 初始化驗證碼 this.identifyCode = ’’ this.makeCode(this.identifyCodes, 4)}, };</script> <style> </style>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Vue
相關文章:
主站蜘蛛池模板: 美能达分光测色仪_爱色丽分光测色仪-苏州方特电子科技有限公司 | 一体式钢筋扫描仪-楼板测厚仪-裂缝检测仪-泰仕特(北京) | TwistDx恒温扩增-RAA等温-Jackson抗体-默瑞(上海)生物科技有限公司 | 南京欧陆电气股份有限公司-风力发电机官网| 全自动包装机_灌装机生产厂家-迈驰包装设备有限公司 | 农业四情_农业气象站_田间小型气象站_智慧农业气象站-山东风途物联网 | 碳钢法兰厂家,非标法兰,定制异型,法兰生产厂家-河北九瑞管道 | 北京公司注册_代理记账_代办商标注册工商执照-企力宝 | 合肥活动房_安徽活动板房_集成打包箱房厂家-安徽玉强钢结构集成房屋有限公司 | 1000帧高速摄像机|工业高速相机厂家|科天健光电技术 | 钢衬四氟管道_钢衬四氟直管_聚四氟乙烯衬里管件_聚四氟乙烯衬里管道-沧州汇霖管道科技有限公司 | 广州展览制作|展台制作工厂|展览设计制作|展览展示制作|搭建制作公司 | 浩方智通 - 防关联浏览器 - 跨境电商浏览器 - 云雀浏览器 | 东莞螺杆空压机_永磁变频空压机_节能空压机_空压机工厂批发_深圳螺杆空压机_广州螺杆空压机_东莞空压机_空压机批发_东莞空压机工厂批发_东莞市文颖设备科技有限公司 | 不锈钢管件(不锈钢弯头,不锈钢三通,不锈钢大小头),不锈钢法兰「厂家」-浙江志通管阀 | 恒湿机_除湿加湿一体机_恒湿净化消毒一体机厂家-杭州英腾电器有限公司 | 北京森语科技有限公司-模型制作专家-展览展示-沙盘模型设计制作-多媒体模型软硬件开发-三维地理信息交互沙盘 | 二手Sciex液质联用仪-岛津气质联用仪-二手安捷伦气质联用仪-上海隐智科学仪器有限公司 | 挖掘机挖斗和铲斗生产厂家选择徐州崛起机械制造有限公司 | 仿古瓦,仿古金属瓦,铝瓦,铜瓦,铝合金瓦-西安东申景观艺术工程有限公司 | 数码管_LED贴片灯_LED数码管厂家-无锡市冠卓电子科技有限公司 | 芜湖厨房设备_芜湖商用厨具_芜湖厨具设备-芜湖鑫环厨具有限公司 控显科技 - 工控一体机、工业显示器、工业平板电脑源头厂家 | 电缆接头_防水接头_电缆防水接头_防水电缆接头_上海闵彬 | 不锈钢管件(不锈钢弯头,不锈钢三通,不锈钢大小头),不锈钢法兰「厂家」-浙江志通管阀 | 对辊式破碎机-对辊制砂机-双辊-双齿辊破碎机-巩义市裕顺机械制造有限公司 | 铸铝门厂家,别墅大门庭院大门,别墅铸铝门铜门[十大品牌厂家]军强门业 | 帽子厂家_帽子工厂_帽子定做_义乌帽厂_帽厂_制帽厂_帽子厂_浙江高普制帽厂 | 冷柜风机-冰柜电机-罩极电机-外转子风机-EC直流电机厂家-杭州金久电器有限公司 | 优宝-汽车润滑脂-轴承润滑脂-高温齿轮润滑油脂厂家 | 机构创新组合设计实验台_液压实验台_气动实训台-戴育教仪厂 | 专注氟塑料泵_衬氟泵_磁力泵_卧龙泵阀_化工泵专业品牌 - 梭川泵阀 | 济南拼接屏_山东液晶拼接屏_济南LED显示屏—维康国际官网 | 北京森语科技有限公司-模型制作专家-展览展示-沙盘模型设计制作-多媒体模型软硬件开发-三维地理信息交互沙盘 | 网优资讯-为循环资源、大宗商品、工业服务提供资讯与行情分析的数据服务平台 | 吹田功率计-长创耐压测试仪-深圳市新朗普电子科技有限公司 | 粉末包装机-给袋式包装机-全自动包装机-颗粒-液体-食品-酱腌菜包装机生产线【润立机械】 | 纯水设备_苏州皙全超纯水设备水处理设备生产厂家 | 货车视频监控,油管家,货车油管家-淄博世纪锐行电子科技 | 深圳法律咨询【24小时在线】深圳律师咨询免费 | 无线联网门锁|校园联网门锁|学校智能门锁|公租房智能门锁|保障房管理系统-KEENZY中科易安 | 硬度计_影像测量仪_维氏硬度计_佛山市精测计量仪器设备有限公司厂家 |