waterprice.js 809 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // pages/waterprice/waterprice.js
  2. const app = getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. priceInfo: {}
  9. },
  10. getPrice() {
  11. app.showLoading();
  12. app.$http.get('/user/getPriceInfo', {
  13. }).then(({
  14. status,
  15. msg,
  16. data
  17. }) => {
  18. if (status === 0) {
  19. data.feeTypeDtos && data.feeTypeDtos.length && data.feeTypeDtos.forEach(v => {
  20. v.ladderInfoDtos && v.ladderInfoDtos.forEach(k => {
  21. k.waterPrice = app.$util.numberFormat(k.waterPrice, 2);
  22. })
  23. })
  24. this.setData({
  25. priceInfo: data
  26. })
  27. }
  28. wx.hideLoading();
  29. }).catch(() => {
  30. wx.hideLoading();
  31. })
  32. },
  33. /**
  34. * 生命周期函数--监听页面加载
  35. */
  36. onLoad: function(options) {
  37. this.getPrice();
  38. }
  39. })