文字设置空格或换行
摘要:一、空格: //使用   (占中文字符一半的大小) <view> <text decode="true">姓  名</text> </view> //使用   (占中文字符的大小) <view> <text decode="true">姓 &emsp
阅读全文
posted @
2024-06-14 18:19
周文豪
阅读(37)
推荐(0) 编辑
validate方法进行表单异步校验时,回调函数内部避免使用全局变量
摘要:对整个表单进行校验的方法,参数为一个回调函数。该回调函数会在校验结束后被调用,并传入两个参数:是否校验成功和未通过校验的字段。若不传入回调函数,则会返回一个 promise 问题代码: save(){ console.log(that.pos.indexName) console.log(that.
阅读全文
posted @
2024-06-05 17:28
周文豪
阅读(42)
推荐(0) 编辑
Vue 前端根据list下载 Excel 文件
摘要:当前端已经有list时,此时下载就不需要再从后台获取数据,而是根据前端的list集合直接下载。 步骤如下: 1、安装依赖 npm install -S file-saver(生产依赖,则为-s) npm install -S xlsx npm install -D script-loader (开发
阅读全文
posted @
2024-06-05 10:53
周文豪
阅读(95)
推荐(0) 编辑
element 输入框(input)点击清空(clearable)的触发事件
摘要:element官网中的input输入框的事件如下: 代码: <el-input placeholder="请输入名称" class="input-select" v-model="listQuery.name" @keyup.enter.native="filterByName" @clear="f
阅读全文
posted @
2024-06-04 14:54
周文豪
阅读(665)
推荐(0) 编辑
svg图片放img标签报错解决办法
摘要:错误代码: <div v-if="item.showType == '2'" :id="'tag'+index" class="tag-icon-text" @click="tagClick(item)"> <img src="@/assets/images/flag.jpg" class="img
阅读全文
posted @
2024-06-03 11:00
周文豪
阅读(119)
推荐(0) 编辑