最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue實(shí)現(xiàn)登錄驗(yàn)證碼

 更新時(shí)間:2021年08月13日 10:26:04   作者:天真吳邪xie  
這篇文章主要為大家詳細(xì)介紹了vue實(shí)現(xiàn)登錄驗(yàn)證碼,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了vue實(shí)現(xiàn)登錄驗(yàn)證碼的具體代碼,供大家參考,具體內(nèi)容如下

先來demo效果圖

canvas驗(yàn)證碼組件(可直接復(fù)制,無需改動(dòng))

<template>
    <div class="s-canvas">
        <canvas id="s-canvas" :width="contentWidth" :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: {
            // 生成一個(gè)隨機(jī)數(shù)
            randomNum(min, max) {
                return Math.floor(Math.random() * (max - min) + min)
            },
            // 生成一個(gè)隨機(jī)的顏色
            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)
                // 修改坐標(biāo)原點(diǎn)和旋轉(zhuǎn)角度
                ctx.translate(x, y)
                ctx.rotate(deg * Math.PI / 180)
                ctx.fillText(txt, 0, 0)
                // 恢復(fù)坐標(biāo)原點(diǎn)和旋轉(zhuǎn)角度
                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) {
                // 繪制干擾點(diǎn)
                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部分,按需改動(dòng)

引入驗(yàn)證碼組件

methods方法

login頁面完整代碼

<style lang="less">
    @import './login.less';
</style>
 
<template>
    <div class="login" @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-width="90" inline>
                                <FormItem label="帳號(hào)" prop="username">
                                    <Input v-model="form.username" placeholder="請(qǐng)輸入帳號(hào)" ref="input" clearable style="width: 200px"/>
                                </FormItem>
                                <FormItem label="密碼" prop="password">
                                    <Input v-model="form.password" placeholder="請(qǐng)輸入密碼" clearable  style="width: 200px"/>
                                </FormItem>
                                <FormItem label="驗(yàn)證碼" prop="verificationCode">
                                    <Input v-model="form.verificationCode" placeholder="請(qǐng)輸入驗(yàn)證碼" clearable  style="width: 200px"/>
                                    <div @click="refreshCode" style="margin-top: 20px">
                                        <!--驗(yàn)證碼組件-->
                                        <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-width="90" inline>
                                <FormItem label="帳號(hào)" prop="username">
                                    <Input v-model="formValidate.username" placeholder="請(qǐng)輸入帳號(hào)" ref="input" clearable style="width: 200px"/>
                                </FormItem>
                                <FormItem label="密碼" prop="password">
                                    <Input v-model="formValidate.password" placeholder="請(qǐng)輸入密碼" clearable  style="width: 200px"/>
                                </FormItem>
                                <FormItem label="手機(jī)號(hào)" prop="mobile">
                                    <Input v-model="formValidate.mobile" placeholder="請(qǐng)輸入手機(jī)號(hào)" clearable style="width: 200px" />
                                </FormItem>
                                <FormItem label="短信驗(yàn)證碼" prop="header">
                                    <Input v-model="formValidate.header" placeholder="短信驗(yàn)證碼" style="width: 200px"/>
                                    <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-particles
                color="#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: '驗(yàn)證碼不能為空', trigger: 'blur'}
                    ]
                },
                ruleValidate: {
                    username: [
                        {required: true, message: '登錄用戶名不能為空', trigger: 'blur'}
                    ],
                    password: [
                        {required: true, message: '登錄密碼不能為空', trigger: 'blur'}
                    ],
                    mobile: [
                        {required: true, message: '手機(jī)號(hào)不能為空', trigger: 'blur'}
                    ],
                    header: [
                        {required: true, message: '短信驗(yàn)證碼不能為空', trigger: 'blur'}
                    ]
                },
                img:'../../static/grey_wolf.jpg',
                // 是否禁用按鈕
                codeDisabled: false,
                // 倒計(jì)時(shí)秒數(shù)
                countdown: 60,
                // 按鈕上的文字
                codeMsg: '獲取驗(yàn)證碼',
                // 定時(shí)器
                timer: null,
                identifyCode: '',
                identifyCodes: '1234567890abcdefjhijklinopqrsduvwxyz',
            };
        },
        methods: {
            // 刷新驗(yàn)證碼
            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)
            },
            // 獲取短信驗(yàn)證碼
            getCode() {
                // 驗(yàn)證碼60秒倒計(jì)時(shí)
                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 = "重新發(fā)送(" + this.countdown + ")";
                        this.codeDisabled = true;
                    } else {
                        clearInterval(this.timer);
                        this.codeMsg = "獲取驗(yàn)證碼";
                        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);
                        //登錄接口請(qǐng)求
                        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 () {
            // 初始化驗(yàn)證碼
            this.identifyCode = ''
            this.makeCode(this.identifyCodes, 4)
        },
 
    };
</script>
 
<style>
 
</style>

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Vue腳手架安裝時(shí)遇到的無法安裝問題詳解

    Vue腳手架安裝時(shí)遇到的無法安裝問題詳解

    開發(fā)中遇到bug是在正常不過了,而程序也基本都是bug堆里爬出來的,下面這篇文章主要給大家介紹了關(guān)于Vue腳手架安裝時(shí)遇到的無法安裝問題的相關(guān)資料,文中通過實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2022-07-07
  • vue路由傳參的基本實(shí)現(xiàn)方式小結(jié)【三種方式】

    vue路由傳參的基本實(shí)現(xiàn)方式小結(jié)【三種方式】

    這篇文章主要介紹了vue路由傳參的基本實(shí)現(xiàn)方式,結(jié)合實(shí)例形式總結(jié)分析了vue.js路由傳參的三種實(shí)現(xiàn)方式,包括params顯示傳參、不顯示參數(shù)以及query顯示參數(shù)傳參,需要的朋友可以參考下
    2020-02-02
  • 一文帶你搞懂Vue?Loader是如何工作的

    一文帶你搞懂Vue?Loader是如何工作的

    Vue?Loader?作為一個(gè)?webpack?的?Loader,扮演著將?.vue?文件轉(zhuǎn)化為瀏覽器可執(zhí)行代碼的角色,下面就跟隨小編一起深入了解Vue?Loader?的技術(shù)細(xì)節(jié)與工作機(jī)制吧
    2024-12-12
  • vue3?emits事件使用示例詳解

    vue3?emits事件使用示例詳解

    這篇文章主要為大家介紹了vue3?emits事件使用示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-07-07
  • Vue異步更新機(jī)制及$nextTick原理的深入講解

    Vue異步更新機(jī)制及$nextTick原理的深入講解

    最近在學(xué)習(xí)一些底層方面的知識(shí),所以想做個(gè)系列嘗試去聊聊這些比較復(fù)雜又很重要的知識(shí)點(diǎn),下面這篇文章主要給大家介紹了關(guān)于Vue異步更新機(jī)制及$nextTick原理的相關(guān)資料,需要的朋友可以參考下
    2022-04-04
  • Vue中?引入使用?babel-polyfill?兼容低版本瀏覽器的方法

    Vue中?引入使用?babel-polyfill?兼容低版本瀏覽器的方法

    最近在項(xiàng)目中使用 webpack 打包后升級(jí),用戶反饋使用瀏覽器(chrome 45)訪問白屏。經(jīng)過排查發(fā)現(xiàn):由于 chrome 45 無法兼容 ES6 語法導(dǎo)致的,接下來給大家介紹下Vue中?引入使用?babel-polyfill?兼容低版本瀏覽器方法,需要的朋友可以參考下
    2023-02-02
  • vue 實(shí)現(xiàn)數(shù)字滾動(dòng)增加效果的實(shí)例代碼

    vue 實(shí)現(xiàn)數(shù)字滾動(dòng)增加效果的實(shí)例代碼

    最近做了個(gè)項(xiàng)目需要做數(shù)字滾動(dòng)增加的效果,剛開始接到這個(gè)項(xiàng)目還真是懵了,后來發(fā)現(xiàn)實(shí)現(xiàn)代碼很簡單的,下面小編給大家?guī)砹藇ue 實(shí)現(xiàn)數(shù)字滾動(dòng)增加效果的實(shí)例代碼,需要的朋友參考下吧
    2018-07-07
  • vue項(xiàng)目退出登錄清除store數(shù)據(jù)的三種方法

    vue項(xiàng)目退出登錄清除store數(shù)據(jù)的三種方法

    最近使用vue做用戶的登錄/退出,在開發(fā)過程中遇到的一些問題,記錄下來,下面這篇文章主要給大家介紹了關(guān)于vue項(xiàng)目退出登錄清除store數(shù)據(jù)的三種方法,需要的朋友可以參考下
    2022-09-09
  • 詳解vue-router基本使用

    詳解vue-router基本使用

    本篇文章主要介紹了詳解vue-router基本使用,詳細(xì)的介紹了vue-router的概念和用法,有興趣的可以了解一下。
    2017-04-04
  • Vue3中的動(dòng)畫過渡實(shí)現(xiàn)技巧分享

    Vue3中的動(dòng)畫過渡實(shí)現(xiàn)技巧分享

    在現(xiàn)代的前端開發(fā)中,用戶體驗(yàn)的重要性不言而喻,為了讓應(yīng)用程序更加生動(dòng)和引人注目,動(dòng)畫和過渡效果是必不可少的元素,本文將以 Vue3 為基礎(chǔ),深入探討如何在應(yīng)用程序中實(shí)現(xiàn)動(dòng)畫過渡,以及一些技巧和最佳實(shí)踐,需要的朋友可以參考下
    2025-01-01

最新評(píng)論

诸暨市| 郓城县| 新郑市| 普格县| 亳州市| 弥渡县| 衢州市| 抚松县| 吉林市| 土默特右旗| 西吉县| 安吉县| 开阳县| 林西县| 和林格尔县| 石棉县| 朔州市| 普洱| 喀喇| 洪湖市| 新邵县| 中超| 五指山市| 定州市| 信宜市| 安泽县| 竹山县| 长春市| 潜江市| 龙海市| 铁岭县| 五峰| 蒙阴县| 尖扎县| 甘泉县| 浠水县| 广东省| 天台县| 玛多县| 大化| 朝阳区|