index.js 674 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Page({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. showUploadTip: false,
  7. haveGetRecord: false,
  8. envId: '',
  9. record: ''
  10. },
  11. onLoad(options) {
  12. this.setData({
  13. envId: options.envId
  14. });
  15. wx.showLoading({
  16. title: '',
  17. });
  18. wx.cloud.callFunction({
  19. name: 'quickstartFunctions',
  20. data: {
  21. type: 'sumRecord'
  22. }
  23. }).then((resp) => {
  24. this.setData({
  25. record: resp.result.list
  26. });
  27. wx.hideLoading();
  28. }).catch((e) => {
  29. console.log(e);
  30. this.setData({
  31. showUploadTip: true
  32. });
  33. wx.hideLoading();
  34. });
  35. },
  36. goBack() {
  37. wx.navigateBack();
  38. },
  39. });