toFixed.wxs 791 B

1234567891011121314151617181920212223242526272829
  1. var filters = {
  2. getDate: function (value) {
  3. return value.split(' ')[0]
  4. },
  5. toFix2: function (value) {
  6. return parseFloat(value).toFixed(2)//此处2为保留两位小数
  7. },
  8. defaultImg: function (value) {
  9. if(value.indexOf('http')>=0){
  10. return value
  11. }else{
  12. return '../../xiao/default_img@2x.png'
  13. }
  14. },
  15. getColor: function () {
  16. var r = Math.floor(Math.random()*256);
  17. var g = Math.floor(Math.random()*256);
  18. var b = Math.floor(Math.random()*256);
  19. return "rgb("+r+","+g+","+b+")";
  20. }
  21. }
  22. // filters为自定义的字段,可以改成自己喜欢的字段,记得将module中的叶修改为同一个字段
  23. module.exports = {
  24. toFix2: filters.toFix2,
  25. defaultImg:filters.defaultImg,
  26. getColor:filters.getColor,
  27. getDate:filters.getDate
  28. }