码迷,mamicode.com
首页 > 其他好文 > 详细

格式金钱【摘抄与网络,记录】

时间:2020-01-12 18:14:44      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:bsp   java   ini   使用   inf   tab   src   格式化   template   

// 格式化金钱
const digitsRE = /(\d{3})(?=\d)/g
export function currency(value, currency, decimals) {
    value = parseFloat(value)
    if (!isFinite(value) || (!value && value !== 0)) return ‘‘
    currency = currency != null ? currency : ‘¥‘
    decimals = decimals != null ? decimals : 2
    var stringified = Math.abs(value).toFixed(decimals)
    var _int = decimals
        ? stringified.slice(0, -1 - decimals)
        : stringified
    var i = _int.length % 3
    var head = i > 0
        ? (_int.slice(0, i) + (_int.length > 3 ? ‘,‘ : ‘‘))
        : ‘‘
    var _float = decimals
        ? stringified.slice(-1 - decimals)
        : ‘‘
    var sign = value < 0 ? ‘-‘ : ‘‘
    return sign + currency + head +
        _int.slice(i).replace(digitsRE, ‘$1,‘) +
        _float
}

效果:

技术图片

 

 使用过滤器,使用如下:

main.js导入:
import { currency } from ‘./common/currency.js‘ Vue.filter("currency", currency);
//表格使用 <el-table-column prop="moneyGood" label="金额(元)" min-width="50" sortable align="center" > <template slot-scope="scope"> <span>{{scope.row.money| currency(‘¥‘)}}</span> </template> </el-table-column> //文本使用 <p class="cc">{{moneyGood| currency(‘¥‘)}}</p>

  

格式金钱【摘抄与网络,记录】

标签:bsp   java   ini   使用   inf   tab   src   格式化   template   

原文地址:https://www.cnblogs.com/0520euv/p/12183164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!