标签:vue

vue

vue 滑动验证组件

vue 滑动验证组件
运行实例 使用 <range @getdata="getStatus"></range> getStatus (e) { this.status = e }, 代码 /** * @Author: 85...

3年前 (2022-06-08) 喜欢

vue

vue element ui this.$message关闭弹窗信息

vue element ui  this.$message关闭弹窗信息
客户提出登录后仍然返回,请登录,排查发现是提示信息持续5秒,用户登录在2秒内完成了登录。所以调整了一下,登录前关闭message弹窗。或者提示信息设置的短一点。 通过closeAll()关闭 this.$message.closeAll() 关闭所有弹窗 var that=th...

3年前 (2022-06-05) 喜欢

vue

vue 搜索下拉模板

vue 搜索下拉模板
/** * @Author: 858834013@qq.com * @Name: labelList * @Date: 2022-05-25 * @Desc: */ <template> <div class="labelList"&g...

3年前 (2022-06-05) 喜欢

vue

element ui全局修改主题色

element ui全局修改主题色
生成主题色 在线生成主题色 生成后,下载主题色,放入项目目录。 引入主题色 import '../theme/index.css' import ElementUI from 'element-ui' import Vue from 'vue' Vue.use(ElementU...

3年前 (2022-06-03) 喜欢

js

js 名称和电话脱敏

js 名称和电话脱敏
getName: function(next) { return next.substr(0, 1) + '**' }, getPhone: function(next) { return next.substr(0, 3) + '******' + ...

3年前 (2022-06-01) 喜欢