1 Star 0 Fork 6

funwell/常用封装函数

forked from lolxy/常用封装函数 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
currency.js 885 Bytes
一键复制 编辑 原始数据 按行查看 历史
unknown 提交于 2019-11-13 15:15 . ‘’
/** 货币 */
function formatCurrency(price) {
/** @price 数字或字符串或数组,数组则返回价格区间 */
if(Object.prototype.toString.call(price) == '[object String]') {
price = Number(price)
}
if(Object.prototype.toString.call(price) == '[object Number]') {
return '' + price.toFixed(2) * 100 / 100
}
if(Object.prototype.toString.call(price) == '[object Array]') {
if(price.length == 0) return
if(price.length == 1) return '' + Number(price).toFixed(2) *100/100
let min = Number(price[0]), max = min
for(let i=1;i<price.length;i++) {
if(min > Number(price[i])) min = Number(price[i])
if(max < Number(price[i])) max = Number(price[i])
}
if(min == max) return '' + min.toFixed(2) *100/100
return '' + min.toFixed(2) *100/100 + '~' + max.toFixed(2) *100/100
}
}
export default {
formatCurrency
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xmuhw/common_encapsulation_functions.git
[email protected]:xmuhw/common_encapsulation_functions.git
xmuhw
common_encapsulation_functions
常用封装函数
master

搜索帮助