element el-input directive数字
使用自定义指令格式化el-input
背景
使用element开发的过程中遇到循环的数据只能输入数字,并且有不要小数点,有需要小数点的
使用vue directive 进行控制
开发
页面使用方式 v-numberInt:0="item.first_fee" 0为保留几位小数
<tr v-for="(item,index) in form.valuation_rules" :key="index"> <td class="center" > <el-input v-if="form.valuation_type==1" v-numberInt:0="item.first_fee" v-model.trim="item.first_amount"></el-input> <el-input v-else v-model.trim="item.first_amount" v-numberInt:2="item.first_fee"></el-input> </td> <td class="center"> <el-input v-model.trim="item.first_fee" v-numberInt:2="item.first_fee"></el-input> </td> <td class="center"> {{item.additional_amount}} </td> <td class="center"> <el-input v-model.trim="item.additional_fee" v-numberInt:2="item.additional_fee"></el-input> </td> </tr>
因为用的是element 的el-input ,组件input外层包着一层div所以要使用const element = el.getElementsByTagName('input')[0]获取 input对其监听失焦 当输入的不是数字时,失焦后会变成0,没有使用directive update方法,比较简单directives.js
directives.js
Vue.directive('numberInt', { bind: function(el, binding, vnode) { const element = el.getElementsByTagName('input')[0] const len = binding.arg // 初始化设置 element.value = Number(element.value ).toFixed(len) // 失焦时候格式化 element.addEventListener('blur', function() { if (isNaN(element.value)) { vnode.data.model.callback(0) } else { vnode.data.model.callback(Number(element.value).toFixed(len)) } }) }})
如果大家有更好的方法希望能留言交流
相关推荐
xingdongfang 2019-11-10
zhenghao 2014-05-30
youyouzouzou 2014-05-30
zbwroom 2014-05-30
LDN0 2014-07-02
CrazyDogWang 2017-09-10
老卫的技术站 2018-10-09
zbwroom 2017-09-10
Oranq 2017-03-22
CrazyDogWang 2016-06-07
lizean 2016-05-20
zhenghao 2016-05-17
youyouzouzou 2016-05-11
zbwroom 2014-05-30
zhenghao 2014-05-30
lizean 2014-05-30
Cricket 2019-06-26
lizean 2013-12-20