You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weixin/weixin_font/utils/fixed.wxs

8 lines
161 B

var filters = {
toFix: function (value) {
return value.toFixed(1)//此处2为保留两位小数
}
}
module.exports = {
toFix: filters.toFix
}