摘要: /* * 格式化金额 * */ Vue.filter('amountFormat', (numberStr) => { const type = typeof numberStr; if (type 'string') { if (/%$/.test(numberStr)) { return num 阅读全文
posted @ 2019-12-09 13:59 益码凭川 阅读(195) 评论(0) 推荐(0)