当前位置: 首页 > news >正文

vue,H5车牌弹框定制键盘包括新能源车牌

1.车牌展示div

<div class="carDiv"><div class='carTitle'><span>*</span>车牌号</div><div class="car-num-input"><div v-for="(item,index) in carNumList" :key="index" @click.stop="selectCarNum(index)":class="(carIndex == index ? 'active' : '') + ' ' + (item ? 'status-key' : '')">{{ index == 0 && !item ? '省' : index == carNumList.length-1 && !item ? '新能源' : item }}</div></div>
</div>

2.车牌弹框键盘

<van-popup v-model="keyboardShow" position="bottom" round :overlay="true" :close-on-click-overlay="false"><div class="keyboard-layer"><div class="keyboard-header"><span @click="keyboardShow = false">完成</span></div><!-- 省份键盘 --><div class="province-layer" v-if="carIndex == '0'"><span v-for="(item,index) in provinceList" :key="index" @click="keyboardBtn(item)":class="activeKey == item ? 'active-hover' : ''">{{ item == 'del' ? '删除' : item }}</span></div><!-- 数字字母键盘 --><div class="keyboard-item" v-if="carIndex != '0'"><div v-if="carIndex != '1'"><span v-for="(item,index) in keyboardList[0]" :key="index" @click="keyboardBtn(item)":class="activeKey == item ? 'active-hover' : ''">{{ item }}</span></div><div><span v-for="(item,index) in keyboardList[1]" :key="index" @click="keyboardBtn(item)":class="((item == 'O' && carIndex != '1') ? 'no-btn' : '') + ' ' + (activeKey == item ? 'active-hover' : '')">{{ item }}</span></div><div><span v-for="(item,index) in keyboardList[2]" :key="index" @click="keyboardBtn(item)":class="activeKey == item ? 'active-hover' : ''">{{ item }}</span></div><div><span v-for="(item,index) in keyboardList[3]" :key="index" @click="keyboardBtn(item)":class="activeKey == item ? 'active-hover' : ''">{{ item == 'del' ? '删除' : item }}</span></div><div v-if="carIndex == carNumList.length-2"><span v-for="(item,index) in keyboardList[4]" :key="index" @click="keyboardBtn(item)":class="activeKey == item ? 'active-hover' : ''">{{ item }}</span></div></div></div>
</van-popup>

data

addShow: false, // 添加车辆弹窗显示隐藏
number:'',
carNumList: ['', '', '', '', '', '', '', ''], // 车牌号数组
activeKey: '', // 键盘按键选中激活
timeoutId: null, // 定时器ID
carIndex: null, // 车牌号输入光标索引
keyboardShow: false, // 键盘显示/隐藏
provinceList: ['京', '津', '沪', '渝', '冀', '豫', '云', '辽', '黑', '湘','皖', '鲁', '新', '苏', '浙', '赣', '鄂', '桂', '甘', '晋','蒙', '陕', '吉', '闽', '贵', '粤', '青', '藏', '川', '宁','琼', '使', '领', '学', '警', '挂', 'del'
],
keyboardList: [['1', '2', '3', '4', '5', '6', '7', '8', '9', '0'],['Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'O', 'P'],['A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L'],['Z', 'X', 'C', 'V', 'B', 'N', 'M', 'del'],['学', '警', '港', '澳']
],

watch监听

watch: {"addShow"() {// 关闭弹窗时重置if (!this.addShow) {this.number='';this.carIndex = ''; // 车牌号输入光标索引this.carNumList = ['', '', '', '', '', '', '', '']; // 车牌号数组this.keyboardShow = false; // 车牌键盘隐藏}},
}

methods方法

methods:{// 点击车牌号输入selectCarNum(inx) {this.carIndex = inx;if (!this.keyboardShow) {this.keyboardShow = true;}},// 键盘输入keyboardBtn(val) {this.activeKey = val; // 键盘按键选中激活this.activeKeyBtn(); // 键盘按键激活定时器this.carNumList[this.carIndex] = val == 'del' ? '' : val;if (val == 'del' && this.carIndex > 0) {this.carIndex--;}if (val != 'del' && this.carIndex < this.carNumList.length - 1) {this.carIndex++;}// 判断前7个有没有值let ifData = this.carNumList.length >= 7 && this.carNumList.slice(0, 7).every(value => value != null && value !== '');if(ifData == true){this.keyboardShow = false;this.checkCarInfo('write');//判断填写车牌是否绑定}this.$forceUpdate();},// 键盘按键激活定时器activeKeyBtn() {// 清除之前的定时器if (this.timeoutId) clearTimeout(this.timeoutId)// 1秒后重置状态this.timeoutId = setTimeout(() => {this.activeKey = '';}, 300)},
}

css

.carDiv{padding: 10px 10px;border-bottom:0.5px solid #F4F4F4;.carTitle{font-size: 14px;color: #1f324e;font-weight: 700;span{color: #F81E1E;}}
}.car-num-input {width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 4px 0;box-sizing: border-box;div {width: 36px;height: 36px;background: rgba(0, 0, 0, .05);border-radius: 4px;border: 1px solid transparent;box-sizing: border-box;display: flex;align-items: center;justify-content: center;color: #000;font-size: 14px;line-height: 18px;&:first-child {color: rgba(0, 0, 0, .5);}&:last-child {border: 1px dashed rgba(27, 171, 80, 0.8);color: rgba(0, 0, 0, .5);font-size: 8px;}}.active {border: 1px solid rgba(48, 112, 255, 0.8) !important;}.status-key {color: #000 !important;font-size: 14px !important;line-height: 18px !important;}
}// 车牌弹框
.keyboard-layer {width: 100%;background: #D0D5DC;padding: 8px 4px 16px;box-sizing: border-box;// position: absolute;// bottom: 0;// left: 0;.keyboard-header {width: 100%;display: flex;align-items: center;justify-content: flex-end;padding: 0 8px 8px;box-sizing: border-box;span {color: #2E59FD;font-family: "PingFang SC";font-size: 14px;font-weight: 700;line-height: 28px;cursor: pointer;}}.province-layer {width: 100%;display: flex;align-items: center;justify-content: center;flex-wrap: wrap;span {color: #000;font-size: 14px;line-height: 40px;background: #fff;border-radius: 6px;width:32px;height:40px;text-align: center;box-sizing: border-box;margin: 2px;box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);}}.keyboard-item {width: 100%;div {display: flex;align-items: center;justify-content: center;span {color: #000;font-size: 14px;line-height: 40px;background: #fff;border-radius: 6px;width:32px;height:40px;text-align: center;box-sizing: border-box;margin: 4px;box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);}}}.no-btn {color: rgba(0, 0, 0, .4) !important;pointer-events: none;}.active-hover {background: #B3BAC7 !important;}
}

效果图:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述在这里插入图片描述

http://www.dtcms.com/a/338526.html

相关文章:

  • word如何转换为pdf
  • 网络基础——Socket编程预备
  • 专题:2025母婴行业消费洞察与分龄营养趋势报告|附40 +份报告PDF、交互图表数据汇总下载
  • MongoDB知识速查
  • uni-app页面使用u-view组件简化版列表页+详情页实现
  • 【最新版】CRMEB Pro版v3.4系统源码全开源+PC端+uniapp前端+搭建教程
  • Selenium自动化测试入门:cookie处理
  • C语言实战:从零开始编写一个通用配置文件解析器
  • Docker+Nginx+Node.js实战教程:从零搭建高可用的前后端分离项目
  • 阿里云参数配置化
  • Apache Doris 4.0 AI 能力揭秘(一):AI 函数之 LLM 函数介绍
  • Python训练营打卡 DAY 41 简单CNN
  • Apache IoTDB 大版本升级记录(成熟的2.0.2版本)
  • 100202Title和Input组件_编辑器-react-仿低代码平台项目
  • AI 小游戏批量生产工厂(Deepseek深度推理reasoner模型64K tokens)
  • 如何计算 PCM 音频与 YUV/RGB 原始视频文件大小?
  • Apache Doris 在菜鸟的大规模湖仓业务场景落地实践
  • 在相机空间中落地动作:以观察为中心的视觉-语言-行动策略
  • OpenHarmony之打造全场景智联基座的“分布式星链 ”WLAN子系统
  • 如何理解关系型数据库的ACID?
  • 【技术揭秘】AI Agent操作系统架构演进:从单体到分布式智能的跃迁
  • Android 数据可视化开发:从技术选型到性能优化
  • 在 Cursor 、 Vscode 中配置 SFTP 实现安全的手动文件上传
  • 利用解优化问题解欠定方程组
  • Redis缓存加速测试数据交互:从前缀键清理到前沿性能革命
  • OpenCV计算机视觉实战(20)——光流法运动分析
  • 云手机矩阵:重构企业云办公架构的技术路径与实践落地
  • 亚矩阵云手机智能定位:助力Snapchat矩阵账号的本地化内容运营穿透技术
  • MySQL实战45讲 24-25
  • Commons-io