千分位,保留两位小数的金额格式化

千分位,保留两位小数的金额格式化

1、thousandth.js

const MoneyTest = /((^[1-9]\d*)|^0)(\.\d{0,2}){0,1}$/
// 金额添加千分位
export const comdify = function(n) {
  if (!n) return n
  n = String(n)
  const str = n.split('.')
  const re = /\d{1,3}(?=(\d{3})+$)/g
  const n1 = str[0].replace(re, '$&,')
  const afterValue = str[1] ? str[1].substring(0, 2) : ''
  return str.length > 1 && str[1] ? `${n1}.${afterValue}` : `${n1}.00`
}
// 去除千分位中的‘,’
export const delcommafy = function(num) {
  if (!num) return num
  num = num.toString()
  num = String(Number(num.replace(/,/gi, '')))
  return num
}
export const valdateFn = function(rule, val, cb) {
  setTimeout(() => {
    if (val) {
      const inputVal = delcommafy(val)
      if (rule.test(inputVal)) {
        cb()
      } else {
        cb('只能是数字金额,最多两位小数')
      }
    }
    cb()
  })
}
// 验证金额数字可以为负数
export const moneyValid = function(rule, val, cb) {
  valdateFn(/((^-?[1-9]\d*)|^-?0)(\.\d{0,2}){0,1}$/, val, cb)
}
// 验证金额数字不可以为负数
export const moneyNValid = function(rule, val, cb) {
  valdateFn(MoneyTest, val, cb)
}
// 获取输入框的值
export const getInputValue = function(el) {
  const inputVal = el.target.value || ''
  return comdify(delcommafy(inputVal))
}

2、页面引用

<template>
	<el-input :value="projectAmount" @blur="handleInput($event,'projectAmount')"></el-input>
</template>
<script>
import { comdify, delcommafy } from '@/utils/thousandth'
export default {
	data() {
		return {
			projectAmount: ''
		}
	},
	methods: {
		handleInput(el, name) {
      this[name] = comdify(delcommafy(el.target.value))
      this.formData[name] = Number(delcommafy(this[name]))
    	},
	}
}
</script>

3、参考链接
element el-input 输入数字转化为千分位

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值