task.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. // pages/task/task.js
  2. const app = getApp()
  3. const util = require("../../utils/util")
  4. const urlDef = require("../../utils/urls")
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. curStu: null,
  11. switchTitle: ['待提交', '已提交'],
  12. doName: "做作业",
  13. beginDate: null,
  14. endDate: null,
  15. status: 0,
  16. loading: '上拉加载',
  17. list: [],
  18. pageNum: 0,
  19. hasNextPage: true,
  20. },
  21. changeIndex: function (e) {
  22. if (e.detail == 0) {
  23. this.setData({ 'status': 0, pageNum: 0, list: [], doName: '做作业' })
  24. } else {
  25. this.setData({ 'status': 1, pageNum: 0, list: [], doName: '查看详情' })
  26. }
  27. this.queryList()
  28. },
  29. doTask: function (e) {
  30. wx.navigateTo({
  31. url: '/pages/taskDetail/taskDetail?id=' + e.currentTarget.dataset.id,
  32. })
  33. },
  34. /**
  35. * 生命周期函数--监听页面加载
  36. */
  37. onLoad: function (options) {
  38. let bd = options.beginDate
  39. let ed = options.endDate
  40. if (bd && ed) {
  41. this.setData({ 'beginDate': bd, 'endDate': ed })
  42. } else {
  43. let today = util.curTime().substring(0, 10).replace(/\//g, '-')
  44. this.setData({ 'beginDate': today.substring(0, 8) + '01', 'endDate': today })
  45. }
  46. },
  47. /**
  48. * 生命周期函数--监听页面初次渲染完成
  49. */
  50. onReady: function () {
  51. this.queryList()
  52. },
  53. /**
  54. * 生命周期函数--监听页面显示
  55. */
  56. onShow: function () {
  57. },
  58. /**
  59. * 生命周期函数--监听页面隐藏
  60. */
  61. onHide: function () {
  62. },
  63. /**
  64. * 生命周期函数--监听页面卸载
  65. */
  66. onUnload: function () {
  67. },
  68. /**
  69. * 页面相关事件处理函数--监听用户下拉动作
  70. */
  71. onPullDownRefresh: function () {
  72. },
  73. /**
  74. * 页面上拉触底事件的处理函数
  75. */
  76. onReachBottom: function () {
  77. if (this.data.hasNextPage) {
  78. let pn = this.data.pageNum
  79. this.setData({ loading: '加载中', 'pageNum': ++pn })
  80. this.queryList()
  81. }
  82. },
  83. /**
  84. * 用户点击右上角分享
  85. */
  86. onShareAppMessage: function () {
  87. },
  88. queryList: function () {
  89. const urls = urlDef.urls;
  90. let stu = wx.getStorageSync('student');
  91. if (stu) {
  92. this.setData('curStu', stu);
  93. let params = { 'q.beginDate': this.data.beginDate, 'q.endDate': this.data.endDate, 'q.studentId': stu.studentId, 'q.status': this.data.status }
  94. params.pageNum = this.data.pageNum
  95. util.apiPost(urls.my_homework, params).then(rs => {
  96. let list = rs.list;
  97. list.map(o => {
  98. if (o.beginTime) {
  99. o.beginTime = o.beginTime.substring(11, 16)
  100. }
  101. if (o.endTime) {
  102. o.endTime = o.endTime.substring(11, 16)
  103. }
  104. if (o.completedTime) {
  105. o.completedTime = o.completedTime.substring(0, 10)
  106. }
  107. if (o.homeworkContent) {
  108. o.homeworkContent = this.parseContent(o.homeworkContent)
  109. }
  110. })
  111. this.setData({
  112. 'hasNextPage': rs.hasNextPage,
  113. 'loading': rs.hasNextPage ? '下拉刷新' : '没有更多数据',
  114. 'list': this.data.list.concat(list)
  115. })
  116. })
  117. }
  118. },
  119. parseContent(content) {
  120. let contents = null
  121. try {
  122. contents = JSON.parse(content)
  123. content = contents.content
  124. } catch (e) {
  125. contents = {}
  126. console.log(JSON.stringify(e))
  127. }
  128. return content
  129. }
  130. })