vue购物结算清单

所属分类:输入-自动完成

 21748  167  查看评论 (1)
分享到微信朋友圈
X
vue购物结算清单 ie兼容9

更新时间:2020-07-24 00:37:54

更新说明:修复输入框的值验证,对于非正整数,值清空,并在失焦时,值设为0。

代码修改地方:

<input type="text" class="num-input" v-model="item.pro_num">

处新增两个判断

@input="search($event,index)" @blur="check($event,index)",

<input type="text" class="num-input" v-model="item.pro_num" @input="search($event,index)" @blur="check($event,index)">

对应methods加两个函数:

search: function(event, index) {
        search: function(event, index) {
            let flag = new RegExp("^[1-9]([0-9])*$").test(event.target.value);
            if (!flag) {
                this.productList[index].pro_num = '';
            }
        },
        check: function(event, index) {
            if (event.target.value == '') {
                this.productList[index].pro_num = 0;
            }
        },

更新时间:2020-07-15 22:47:06


相关插件-自动完成

仿淘宝选择商品计算价格

同一个商品有不同的版本,最后选择后计算出价格
  自动完成
 37073  492

淘宝数量增加

这个插件是可以不断增加数量的,还会有对应 的增加
  自动完成
 30882  390

jQuery带比例要求的计算器

个别需求,jQuery不同公式计算装配率。例如装修行业。
  自动完成
 22652  302

原生js计算器

原生js简单的加减乘除计算器
  自动完成
 24143  305

讨论这个项目(1)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

    爷爷我想对您说 0
    2020/7/17 10:36:39
    数量可以为负数这个你没限制哦 回复
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
取消回复