toFixed.wxs 239 B

12345678910
  1. var filters = {
  2. toFix: function (value) {
  3. var v = parseFloat(value)//强转Int,毕竟有可能返回是String类型的数字
  4. return v.toFixed(2)
  5. }
  6. }
  7. module.exports = {
  8. toFix: filters.toFix//暴露接口调用
  9. }