taskDetail.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. // pages/taskDetail/taskDetail.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. homeworkId: null,
  12. curVideo: '',
  13. videoFlag: 0,
  14. videoContext: '',
  15. curAudio: '',
  16. curAudioIndex: -1,
  17. audioPause: 0,
  18. doTaskFlag: false,
  19. entity: null,
  20. teacherFace: '/images/head.png',
  21. },
  22. bindfullscreenchange: function () {
  23. if (this.data.videoFlag == 0) {
  24. this.setData({
  25. videoFlag: 1
  26. })
  27. } else {
  28. this.setData({
  29. videoFlag: 0,
  30. curVideo: ""
  31. })
  32. }
  33. },
  34. videoShow: function (e) {
  35. this.setData({
  36. curVideo: e.currentTarget.dataset.url
  37. })
  38. this.videoContext.requestFullScreen({ // 设置全屏时视频的方向,不指定则根据宽高比自动判断。
  39. direction: 90 // 屏幕逆时针90度
  40. });
  41. },
  42. showImg: function (e) {
  43. var list = [];
  44. this.data.entity.images.map(o => {
  45. list.push(o.url);
  46. });
  47. wx.previewImage({
  48. urls: list
  49. })
  50. },
  51. showDoneImg: function (e) {
  52. var list = [];
  53. this.data.entity.done.images.map(o => {
  54. list.push(o.url);
  55. });
  56. wx.previewImage({
  57. urls: list
  58. })
  59. },
  60. showMarkImg: function (e) {
  61. var list = [];
  62. this.data.entity.mark.images.map(o => {
  63. list.push(o.url);
  64. });
  65. wx.previewImage({
  66. urls: list
  67. })
  68. },
  69. audioShow: function (e) {
  70. if (this.data.audioPause == 0 && this.data.curAudioIndex != e.currentTarget.dataset.index) {//播放语音,切换
  71. this.setData({
  72. curAudio: ""
  73. })
  74. this.setData({
  75. curAudioIndex: e.currentTarget.dataset.index,
  76. curAudio: e.currentTarget.dataset.url,
  77. })
  78. this.audioContext.play()
  79. this.setData({
  80. audioPause: 0
  81. })
  82. } else if (this.data.audioPause == 1 && this.data.curAudioIndex == e.currentTarget.dataset.index) {//暂停后恢复播放
  83. this.audioContext.play()
  84. this.setData({
  85. audioPause: 0
  86. })
  87. } else if (this.data.audioPause == 0 && this.data.curAudioIndex == e.currentTarget.dataset.index) {//暂停播放
  88. this.audioContext.pause()
  89. this.setData({
  90. audioPause: 1
  91. })
  92. }
  93. },
  94. bindended: function () {
  95. this.setData({
  96. audioPause: 0,
  97. curAudioIndex: -1,
  98. curAudio: ''
  99. })
  100. },
  101. bindpause: function () {
  102. this.setData({
  103. audioPause: 1
  104. })
  105. },
  106. /**
  107. * 生命周期函数--监听页面加载
  108. */
  109. onLoad: function (options) {
  110. let id = options.id;
  111. this.setData({ homeworkId: id });
  112. this.audioContext = wx.createAudioContext('audio-play')
  113. this.videoContext = wx.createVideoContext('play-video');// 创建 video 上下文 VideoContext 对象。
  114. const type = options.type
  115. if (type == 0) {
  116. this.setData({
  117. doTaskFlag: true
  118. })
  119. }
  120. this.loadHomework()
  121. },
  122. /**
  123. * 生命周期函数--监听页面初次渲染完成
  124. */
  125. onReady: function () {
  126. },
  127. /**
  128. * 生命周期函数--监听页面显示
  129. */
  130. onShow: function () {
  131. },
  132. /**
  133. * 生命周期函数--监听页面隐藏
  134. */
  135. onHide: function () {
  136. },
  137. /**
  138. * 生命周期函数--监听页面卸载
  139. */
  140. onUnload: function () {
  141. },
  142. /**
  143. * 页面相关事件处理函数--监听用户下拉动作
  144. */
  145. onPullDownRefresh: function () {
  146. },
  147. /**
  148. * 页面上拉触底事件的处理函数
  149. */
  150. onReachBottom: function () {
  151. },
  152. /**
  153. * 用户点击右上角分享
  154. */
  155. onShareAppMessage: function () {
  156. },
  157. loadHomework: function () {
  158. const urls = urlDef.urls;
  159. let stu = wx.getStorageSync('student');
  160. if (stu) {
  161. const body = { 'q.homeworkId': this.data.homeworkId, 'q.studentId': stu.studentId }
  162. // 接收作业(第一次查看有效)
  163. util.apiPost(urls.homework_receive, body).then((rs) => {
  164. console.log('接收作业')
  165. })
  166. util.apiPost(urls.my_homework, body).then((rs) => {
  167. let o = rs[0];
  168. // 解析内容
  169. let workContents;
  170. try {
  171. workContents = JSON.parse(o.homeworkContent);
  172. } catch (e) {
  173. workContents = {
  174. content: o.homeworkContent,
  175. images: [],
  176. records: [],
  177. videos: []
  178. };
  179. console.error(e);
  180. }
  181. o.homeworkContent = workContents.content;
  182. if (o.receiveDate) {
  183. o.receiveDate = o.receiveDate.substring(0, 16).replace('T', ' ')
  184. }
  185. o.images = workContents.images == null ? [] : workContents.images;
  186. o.images.forEach(rs => {
  187. rs.url = urls.oss_file + 'image/' + rs.url
  188. });
  189. o.records = workContents.records == null ? [] : workContents.records;
  190. o.records.forEach(rs => {
  191. rs.url = urls.oss_file + 'file/' + rs.url
  192. });
  193. o.videos = workContents.videos == null ? [] : workContents.videos;
  194. o.videos.forEach(v => {
  195. util.apiPost(urls.video_loadInfo + v.url).then((rs) => {
  196. v.imgUrl = rs.img
  197. v.playUrl = rs.url
  198. this.reloadVideo(v)
  199. });
  200. });
  201. // 完成情况
  202. let doneContents;
  203. try {
  204. doneContents = o.content ? JSON.parse(o.content) : {};
  205. } catch (e) {
  206. doneContents = {
  207. images: [],
  208. records: [],
  209. videos: [],
  210. content: ''
  211. };
  212. console.error(e);
  213. }
  214. o.done = doneContents;
  215. o.done.images = doneContents.images == null ? [] : doneContents.images;
  216. o.done.images.forEach(rs => {
  217. rs.url = urls.oss_file + 'image/' + rs.url
  218. });
  219. o.done.records = doneContents.records == null ? [] : doneContents.records;
  220. o.done.records.forEach(rs => {
  221. rs.url = urls.oss_file + 'file/' + rs.url
  222. });
  223. o.done.videos = doneContents.videos == null ? [] : doneContents.videos;
  224. o.done.videos.forEach(v => {
  225. util.apiPost(urls.video_loadInfo + v.url).then((rs) => {
  226. v.imgUrl = rs.img
  227. v.playUrl = rs.url
  228. this.reloadDoneVideo(v)
  229. });
  230. });
  231. // 批阅情况
  232. let markContents;
  233. try {
  234. markContents = o.markResult ? JSON.parse(o.markResult) : {};
  235. } catch (e) {
  236. markContents = {
  237. images: [],
  238. records: [],
  239. videos: [],
  240. content: ''
  241. };
  242. console.error(e);
  243. }
  244. o.mark = markContents;
  245. o.mark.score = o.markScore ? o.markScore : 0
  246. o.mark.images = markContents.images == null ? [] : markContents.images;
  247. o.mark.images.forEach(rs => {
  248. rs.url = urls.oss_file + 'image/' + rs.url
  249. });
  250. o.mark.records = markContents.records == null ? [] : markContents.records;
  251. o.mark.records.forEach(rs => {
  252. rs.url = urls.oss_file + 'file/' + rs.url
  253. });
  254. o.mark.videos = markContents.videos == null ? [] : markContents.videos;
  255. o.mark.videos.forEach(v => {
  256. util.apiPost(urls.video_loadInfo + v.url).then((rs) => {
  257. v.imgUrl = rs.img
  258. v.playUrl = rs.url
  259. this.reloadMarkVideo(v)
  260. });
  261. });
  262. this.setData({ entity: o })
  263. util.apiPost(urls.get_user_head + '&q.personId=' + rs[0].teacherId).then((fs) => {
  264. if (fs && fs.length > 0) {
  265. this.setData({ teacherFace: urls.oss_file + 'image/' + fs[0] })
  266. }
  267. });
  268. })
  269. }
  270. },
  271. reloadVideo: function (t) {
  272. let o = this.data.entity
  273. let vs = o.videos
  274. vs.map(v => {
  275. if (t.url == v.url) {
  276. v.imgUrl = t.imgUrl
  277. v.playUrl = t.playUrl
  278. }
  279. })
  280. this.setData({ entity: o })
  281. },
  282. reloadDoneVideo: function (t) {
  283. let o = this.data.entity
  284. let vs = o.done.videos
  285. vs.map(v => {
  286. if (t.url == v.url) {
  287. v.imgUrl = t.imgUrl
  288. v.playUrl = t.playUrl
  289. }
  290. })
  291. this.setData({ entity: o })
  292. },
  293. reloadMarkVideo: function (t) {
  294. let o = this.data.entity
  295. let vs = o.mark.videos
  296. vs.map(v => {
  297. if (t.url == v.url) {
  298. v.imgUrl = t.imgUrl
  299. v.playUrl = t.playUrl
  300. }
  301. })
  302. this.setData({ entity: o })
  303. }
  304. })