calc.wxs 270 B

123456789101112
  1. var filters = {
  2. delDecimal: function(str){
  3. console.log('indeldecimal');
  4. var restr = 0;
  5. restr = parseInt(str) / 100 > 0 ? parseInt(parseInt(str) / 100) : 0;
  6. console.log('restr',restr)
  7. return restr;
  8. }
  9. }
  10. module.exports = {
  11. delDecimal: filters.delDecimal
  12. }