task.js 2.9 KB

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