摘要: export function fmt(value, digit, thousand = true) { if (!validNumber(value)) return '-'; value = (Number(value) || 0).toFixed(digit); //加千分符 if (thou 阅读全文
posted @ 2019-03-20 18:06 半亩方塘dd 阅读(714) 评论(0) 推荐(0)