前端Vue自定义发送短信验证码弹框popup 实现剩余秒数计数 重发短信验证码

前端Vue自定义发送短信验证码弹框popup 实现剩余秒数计数 重发短信验证码, 请访问uni-app插件市场地址:https://ext.dcloud.net.cn/plugin?id=13207

效果图如下:

实现代码如下:

# cc-codeDialog

#### 使用方法

```使用方法

<!-- show:是否显示弹框 phone:手机号  autoCountdown:自动时间秒数 len:短信验证码长度 @closeClick:关闭弹框 @confirmClick:确认事件 -->

<cc-codeDialog :show="show" phone="1900000000" :autoCountdown="true" :len="6" @closeClick="closeCodeDialog" @confirmClick="confirmClick"></cc-codeDialog>

```

#### HTML代码实现部分

```html

<template>

<view class="content">

<button @click="showCodeDialog" style="margin-top: 39px;">发送短信验证码 </button>

<!-- show:是否显示弹框 phone:手机号  autoCountdown:自动时间秒数 len:短信验证码长度 @closeClick:关闭弹框 @confirmClick:确认弹框 -->

<cc-codeDialog :show="show" phone="1900000000" :autoCountdown="true" :len="6" @closeClick="closeCodeDialog"

@confirmClick="confirmClick"></cc-codeDialog>

</view>

</template>

<script>

export default {

data() {

return {

show: false

}

},

methods: {

showCodeDialog(item) {

this.show = true;

},

closeCodeDialog(item) {

this.show = false;

},

confirmClick(result) {

console.log("result = " + JSON.stringify(result));

this.show = false;

}

}

}

</script>

<style>

.content {

display: flex;

flex-direction: column;

background-color: aliceblue;

height: 100vh;

}

</style>

```

#### 组件实现代码

```组件实现代码

<template>

<view v-if="show" class="codedialog">

<view class="mask"></view>

<view class="dialog-view">

<text class="dialog-close" @click="closeDialog()"></text>

<view class="dialog-hd">

<view class="codedialog-maintitle">

<text>发送验证码</text>

</view>

<view v-if="phone!='' && phone !=null " class="codedialog-subtitle">

<text>已发送到手机号:{{phoneStr}}</text>

</view>

</view>

<view class="dialog-bd">

<view class="code-view">

<view v-for="(code,index) of codeAry" :key="index" class="code-item">{{code.val}}</view>

</view>

</view>

<view class="dialog-ft">

<view v-if="countdown==60" @click="resend" class="resend">重新发送</view>

<view v-if="countdown<60" class="countdown">{{countdown}}s</view>

</view>

<button style="margin-top: 20px; width: 88%;background-color: royalblue;color: white;"

@click="confirmClick">确定</button>

</view>

<view class="keyboard">

<view class="keyboard-line">

<view data-val="1" @click="bindKeyEvent" class="button-item">1</view>

<view data-val="2" @click="bindKeyEvent" class="button-item">2</view>

<view data-val="3" @click="bindKeyEvent" class="button-item">3</view>

</view>

<view class="keyboard-line">

<view data-val="4" @click="bindKeyEvent" class="button-item">4</view>

<view data-val="5" @click="bindKeyEvent" class="button-item">5</view>

<view data-val="6" @click="bindKeyEvent" class="button-item">6</view>

</view>

<view class="keyboard-line">

<view data-val="7" @click="bindKeyEvent" class="button-item">7</view>

<view data-val="8" @click="bindKeyEvent" class="button-item">8</view>

<view data-val="9" @click="bindKeyEvent" class="button-item">9</view>

</view>

<view class="keyboard-line">

<view data-val="clear" @click="bindKeyEvent" class="button-item">清空</view>

<view data-val="0" @click="bindKeyEvent" class="button-item">0</view>

<view data-val="delete" @click="bindKeyEvent" class="button-item">x</view>

</view>

</view>

</view>

</template>

<script>

export default {

props: {

show: {

type: Boolean,

default: false

},

autoCountdown: {

type: Boolean,

default: true

},

phone: {

type: String,

default: ""

},

len: {

type: Number,

default: 6

}

},

data() {

return {

codeAry: [{

"val": ""

}, {

"val": ""

}, {

"val": ""

}, {

"val": ""

},

{

"val": ""

},

{

"val": ""

}

],

currItem: 0,

countdown: 60,

cTimer: null,

callResult: {

type: 0,

code: ''

},

suspend: false

};

},

computed: {

phoneStr() {

return this.phone.substr(0, 3) + "****" + this.phone.substr(7);

}

},

watch: {

show: function() {

console.log(this.show)

if (this.show) {

if (!this.suspend) {

this.init();

}

} else {

if (!this.suspend) {

this.clearTimer();

}

this.clearCode();

}

}

},

methods: {

init: function() {

var codeAry = [];

for (var i = 0; i < this.len; i++) {

codeAry.push({

val: ""

})

}

this.codeAry = codeAry;

this.currItem = 0;

if (this.autoCountdown) {

this.startTimer();

}

},

bindKeyEvent: function(e) {

var _this = this;

var val = e.currentTarget.dataset.val;

switch (val) {

case "clear":

_this.clearCode();

break;

case "delete":

_this.deleteCode();

break;

default:

_this.inputVal(val);

break;

}

},

inputVal: function(val) {

if (this.currItem < this.len) {

this.codeAry[this.currItem].val = val;

this.currItem++;

}

if (this.currItem == this.len) {

this.execuCall(1);

}

},

clearCode: function() {

this.init();

},

deleteCode: function() {

if (this.currItem > 0) {

this.codeAry[this.currItem - 1].val = "";

this.currItem--;

}

},

closeDialog: function() {

this.execuCall(-1);

this.$emit("closeClick");

},

startTimer: function() {

var _this = this;

if (_this.cTimer == null) {

_this.cTimer = setInterval(function() {

_this.countdown--;

if (_this.countdown == 0) {

_this.clearTimer();

}

}, 1000)

}

},

clearTimer: function() {

var _this = this;

clearInterval(_this.cTimer);

_this.cTimer = null;

_this.countdown = 60;

},

getCodeValue: function() {

var codeStr = "";

this.codeAry.forEach(function(code) {

codeStr += code.val;

})

return codeStr;

},

execuCall: function(type) {

this.callResult.type = type;

if (type == 1) {

this.callResult.code = this.getCodeValue();

this.clearTimer();

} else {

this.suspend = true;

this.callResult.code = '';

}

this.$emit("change", this.callResult);

},

resend: function() {

var _this = this;

_this.callResult.code = '';

_this.callResult.type = 0;

// _this.callResult.resendCall = function() {

// }

_this.init();

_this.$emit("change", _this.callResult);

},

confirmClick() {

console.log("result = " + JSON.stringify(this.callResult));

if (this.callResult.code.length < 6) {

uni.showModal({

title: '温馨提示',

content: '输入短信验证码长度有误'

})

} else {

this.$emit("confirmClick", this.callResult);

}

}

}

}

</script>

<style scoped>

.button-item:active {

background: #d4d4d4;

}

.button-item+.button-item {

border-left: 0.1px solid #d4d4d4;

}

.button-item {

flex: 1;

padding: 14px 0px;

}

.keyboard-line+.keyboard-line {

border-top: 0.1px solid #d4d4d4;

}

.keyboard-line {

display: flex;

}

.keyboard {

background: #fff;

position: absolute;

z-index: 999;

width: 100%;

left: 0;

bottom: 0;

font-size: 17px;

}

.dialog-close {

color: #999;

height: 28px;

width: 28px;

font-size: 19px;

top: 5px;

left: 5px;

position: absolute;

}

.dialog-close:before {

content: "\2716";

}

.countdown {

color: #666;

font-size: 16px;

}

.resend {

color: #007aff;

font-size: 16px;

}

.dialog-ft {

margin-top: 10px;

}

.code-view {

display: flex;

text-align: center;

margin: 0 auto;

border-collapse: separate;

border-spacing: 10px 5px;

}

.code-item+.code-item {

margin-left: 5px;

}

.code-item {

flex: 1;

border-bottom: 1px solid #999;

padding-bottom: 2px;

height: 60upx;

display: flex;

align-items: center;

justify-content: center;

font-size: 30upx;

}

.dialog-bd {

margin-top: 5px;

}

.codedialog-subtitle {

margin-top: 5px;

padding: 5px 0px;

font-size: 15px;

line-height: 1.4;

word-wrap: break-word;

word-break: break-all;

color: #999;

}

.dialog-view {

position: fixed;

z-index: 999;

width: 70%;

max-width: 300px;

top: 50%;

left: 50%;

transform: translate(-50%, -120%);

background-color: #fff;

text-align: center;

border-radius: 3px;

overflow: hidden;

padding: 20px 10px;

}

.mask {

position: fixed;

z-index: 999;

top: 0;

right: 0;

left: 0;

bottom: 0;

background: rgba(0, 0, 0, .6);

}

.codedialog {

z-index: 999;

position: fixed;

width: 100%;

height: 100%;

top: 0;

left: 0;

box-sizing: border-box;

text-align: center;

}

</style>

```

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/778.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

爬虫框架和库有多重要?

爬虫框架和库在网络数据提取和分析中非常重它们为开发人员提供了工具和功能&#xff0c;使他们能够更轻松地从互联网上抓取数据。爬虫框架和库通常提供了高效的网络请求、数据解析和存储机制&#xff0c;简化了爬取过程。 使用爬虫框架库有以下几个重要优势&#xff1a; 快速开…

Web服务器群集:Nginx网页及安全优化

目录 一、理论 1.Nginx网页优化 2.Nginx安全优化 3.Nginx日志分割 二、实验 1.网页压缩 2.网页缓存 3.连接超时设置 4.并发设置 5.隐藏版本信息 6.脚本实现每月1号进行日志分割 7.防盗链 三、总结 一、理论 1.Nginx网页优化 &#xff08;1&#xff09;概述 在企…

C++不知算法系列之计数排序算法的计数之巧

1. 前言 计数排序是较简单的排序算法&#xff0c;其基本思想是利用数组索引号有序的原理。 如对如下的原始数组中的数据(元素)排序&#xff1a; //原始数组 int nums[5]{9,1,7,6,8};使用计数排序的基本思路如下&#xff1a; 创建一个排序数组。数组的大小由原始数组的最大值…

vue3 element-plus 暗黑模式(主题切换)简易版

暗黑模式是说明 暗黑模式是指在应用程序或操作系统中使用暗色背景和浅色文本的界面设计。与传统的亮色模式相比&#xff0c;暗黑模式具有以下特点&#xff1a; 减少眼部疲劳&#xff1a;使用暗色背景可以减少屏幕发出的蓝光&#xff0c;减轻长时间使用电子设备对眼睛的疲劳程度…

python机器学习—— 数据预处理 算法初步

目录 数据预处理1.获取数据2.处理缺失值3.划分数据集4.数据预处理和PCA降维5.算法实现&#xff1a;估计器 数据预处理 1.获取数据 from sklearn.datasets import load_iris liload_iris() print("获取特征值") print(li.data) print("目标值",li.target)#…

Spring Boot 统一功能处理

✏️作者&#xff1a;银河罐头 &#x1f4cb;系列专栏&#xff1a;JavaEE &#x1f332;“种一棵树最好的时间是十年前&#xff0c;其次是现在” 目录 ⽤户登录权限效验Spring Boot 拦截器自定义拦截器将自定义拦截器加入到系统配置 拦截器实现原理 统一异常处理创建一个异常处…

LLM - 搭建 ProteinGPT 结合蛋白质结构 PDB 知识的行业 ChatGPT 系统

欢迎关注我的CSDN&#xff1a;https://spike.blog.csdn.net/ 本文地址&#xff1a;https://blog.csdn.net/caroline_wendy/article/details/131403263 论文&#xff1a;ProteinChat: Towards Enabling ChatGPT-Like Capabilities on Protein 3D Structures 工程&#xff1a;ht…

数据库监控与调优【十七】—— 表结构设计优化

表结构设计优化 第一范式&#xff08;1NF&#xff09; 字段具有原子性&#xff0c;即数据库的每一个字段都是不可分割的原子数据项&#xff0c;不能是集合、数组、记录等非原子数据项 当实体中的某个属性有多个值时&#xff0c;必须拆分为不同的属性 例子&#xff1a; 如图…

【广州华锐互动】机械设备事故VR模拟体验系统

随着虚拟现实技术的不断发展&#xff0c;越来越多的行业开始尝试将VR技术应用到实际场景中&#xff0c;以提供更加真实的体验。其中&#xff0c;机械伤害事故VR警示教育系统的出现&#xff0c;为机械工程师、安全培训人员等行业提供了一种全新的培训方式。在实现上&#xff0c;…

Linux基础

Linux root用户&#xff0c;cd ~ 相当于 cd /root 普通用户&#xff0c;cd ~ 相当于cd /home/当前用户名 注&#xff1a;cd - 返回进入此目录之前所在目录 rm --> remove mv --> move cp --> copy !! 执行最近的一次命令 echo $USER 展现当前用户名字 echo $PATH 展…

Linux:安装tomcat

注意&#xff1a;1.安装tomcat时最好用非root用户安装 2.可以选择新建一个用户&#xff0c;用户安装部署tomcat&#xff0c;本文将继续用fovace账户进行tomcat安装 一、前置条件 安装tomcat需要先安装jdk&#xff0c;所以先确定系统中是否已经有jdk&#xff0c;如下&#xff1a…

Docker的run流程

底层原理 Docker怎么工作&#xff1f; Docker为什么比VM虚拟机块&#xff1f; 1.Docker有比虚拟机更少的抽象层 2.docker利用的是宿主机的内核&#xff0c;vm需要是Guest OS 所以说&#xff0c;新建一个容器的时候&#xff0c;docker不需要像虚拟机一样加载一个系统内核&am…