commom.wxs 147 B

12345678
  1. function Intercept(row){
  2. // console.log(row)
  3. // return Math.round(row * 100)
  4. return row.toFixed(2)
  5. }
  6. module.exports={
  7. Intercept:Intercept
  8. }