tools.wxs 208 B

123456789
  1. // 页面上使用的公共类
  2. // <wxs src="../../utils/tools.wxs" module="tools" />
  3. // tools.tofix2(12.33333)
  4. module.exports = {
  5. msg: 'wxs-tools',
  6. tofix2: function(num) {
  7. return num.toFixed(2)
  8. }
  9. };