index.js 600 B

1234567891011121314151617181920212223242526272829303132
  1. const app = getApp()
  2. Page({
  3. data: {
  4. logList: null,
  5. len: 0
  6. },
  7. onLoad: function(options) {
  8. this.search();
  9. },
  10. search: function() {
  11. let _this = this
  12. _this.setData({
  13. spinShow: true
  14. });
  15. app.formPost('/api/wx/student/user/log', null).then(res => {
  16. _this.setData({
  17. spinShow: false
  18. });
  19. if (res.code === 1) {
  20. _this.setData({
  21. logList: res.response,
  22. len: res.response.length
  23. });
  24. }
  25. }).catch(e => {
  26. _this.setData({
  27. spinShow: false
  28. });
  29. app.message(e, 'error')
  30. })
  31. }
  32. })