小编给大家分享一下vue如何实现键盘输入支付密码功能,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
创新互联公司服务项目包括平安网站建设、平安网站制作、平安网页制作以及平安网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,平安网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到平安省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!vue是什么Vue是一套用于构建用户界面的渐进式JavaScript框架,Vue与其它大型框架的区别是,使用Vue可以自底向上逐层应用,其核心库只关注视图层,方便与第三方库和项目整合,且使用Vue可以采用单文件组件和Vue生态系统支持的库开发复杂的单页应用。
支付密码功能界面如下图:
主要代码如下:
<template> <div class="pay-tool"> <div class="pay-tool-title border-bottom"> <span class="icon icon-back" @click="backHandle"></span><strong>请输入交易密码</strong> </div> <div class="pay-tool-content"> <div class="pay-tool-inputs"> <div class="item" v-for="i in items"><span class="icon_dot" v-if="password[i]"></span></div> </div> <div class="pay-tool-link"><router-link class="link" to="/getP">忘记密码?</router-link></div> </div> <div class="pay-tool-keyboard"> <ul> <li @click="keyUpHandle($event)" v-for="val in keys"> {{ val }} </li> <li class="del" @click="delHandle"><span class="icon-del"><</span></li> </ul> </div> </div> </template> <script> const keys = () => [1, 2, 3, 4, 5, 6, 7, 8, 9, '', 0] // let sendFlag = true // 防止重复发送密码 export default { data () { return { items: [0, 1, 2, 3, 4, 5], keys: keys(), password: [] } }, methods: { backHandle () { this.clearPasswordHandle() // 返回时清除password this.$emit('backFnc') // 返回上级 }, keyUpHandle (e) { let text = e.currentTarget.innerText let len = this.password.length if (!text || len >= 6) return this.password.push(text) this.ajaxData() }, delHandle () { if (this.password.length <= 0) return false this.password.shift() }, ajaxData () { if (this.password.length >= 6) { console.log(parseInt(this.password.join(' ').replace(/\s/g, ''))) } return false }, clearPasswordHandle: function () { this.password = [] } } } </script> <style lang="less" scoped> .pay-tool { position: relative; height: 18.93333333rem; background-color: #fff; overflow: hidden; &-title { width: 100%; height: 2.08888888rem; padding: 0 0.8rem; line-height: 2.08888888rem; text-align: center; overflow: hidden; .icon { float: left; margin-top: 0.72222222rem; } strong { font-size: 0.8rem; } } &-content { .pay-tool-inputs { width: 14.46666666rem; height: 2.31111111rem; margin: 1.28888888rem auto 0; border: 1px solid #b9b9b9; border-radius: 0.26666666rem; box-shadow: 0 0 1px #e6e6e6; display: flex; .item { width: 16.66666666%; height: 2.31111111rem; border-right: 1px solid #b9b9b9; line-height: 2.31111111rem; text-align: center; &:last-child { border-right: none; } .icon_dot { display: inline-block; width: 0.51111111rem; height: 0.51111111rem; background: url("../../assets/images/icon_dot.png") no-repeat; background-size: cover; } } } .pay-tool-link { padding: 0.53333333rem 0.8rem 0; text-align: right; .link { font-size: 0.66666666rem; color: #3c8cfb; } } } .pay-tool-keyboard { position: absolute; left: 0; bottom: 0; width: 100%; ul { width: 100%; display: flex; flex-wrap: wrap; li { width: 33.3333%; height: 2.25442834rem; line-height: 2.25442834rem; text-align: center; border-right: 1px solid #aeaeae; border-bottom: 1px solid #aeaeae; font-size: 0.8rem; font-weight: bold; &:nth-child(1), &:nth-child(2), &:nth-child(3) { border-top: 1px solid #eee; } &:nth-child(3), &:nth-child(6), &:nth-child(9), &:nth-child(12) { border-right: none; } &:nth-child(10), &:nth-child(11), &:nth-child(12) { border-bottom: none; } &:nth-child(10), &:nth-child(12), &:active { background-color: #d1d4dd; } &:nth-child(12):active { background-color: #fff; } } } } } </style>
注意:页面使用rem布局,根html的font-size为45px。
看完了这篇文章,相信你对“vue如何实现键盘输入支付密码功能”有了一定的了解,如果想了解更多相关知识,欢迎关注创新互联行业资讯频道,感谢各位的阅读!
网站栏目:vue如何实现键盘输入支付密码功能-创新互联
本文路径:https://www.cdcxhl.com/article2/cescic.html
成都网站建设公司_创新互联,为您提供ChatGPT、网站内链、品牌网站制作、响应式网站、网站建设、定制网站
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联