taskDetail.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. // pages/taskDetail/taskDetail.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. curVideo: '',
  8. videoFlag: 0,
  9. imgList:[
  10. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  11. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  12. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  13. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  14. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  15. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  16. 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg'
  17. ],
  18. videoContext: '',
  19. videoList:[
  20. {
  21. img: 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  22. url: 'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400'
  23. },
  24. {
  25. img: 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  26. url: 'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400'
  27. },
  28. {
  29. img: 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  30. url: 'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400'
  31. },
  32. {
  33. img: 'https://file.schoolwisdoms.com/image/26cf1980-5b25-4c2e-af7f-376677d76033.jpg',
  34. url: 'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400'
  35. }
  36. ],
  37. audioList:[
  38. 'https://gm-sycdn.kuwo.cn/2256fce37c86b5bc25065d780f769260/60347b85/resource/n2/73/81/1062648582.mp3',
  39. 'https://gm-sycdn.kuwo.cn/2256fce37c86b5bc25065d780f769260/60347b85/resource/n2/73/81/1062648582.mp3',
  40. ],
  41. curAudio: '',
  42. curAudioIndex: -1,
  43. audioPause: 0,
  44. doTaskFlag: false
  45. },
  46. bindfullscreenchange:function(){
  47. if(this.data.videoFlag == 0){
  48. this.setData({
  49. videoFlag : 1
  50. })
  51. } else {
  52. this.setData({
  53. videoFlag : 0,
  54. curVideo : ""
  55. })
  56. }
  57. },
  58. videoShow:function(e){
  59. this.setData({
  60. curVideo: e.currentTarget.dataset.url
  61. })
  62. this.videoContext.requestFullScreen({ // 设置全屏时视频的方向,不指定则根据宽高比自动判断。
  63. direction: 90 // 屏幕逆时针90度
  64. });
  65. },
  66. showImg:function(e){
  67. // var list = e.currentTarget.dataset.url
  68. wx.previewImage({
  69. urls: this.data.imgList,
  70. })
  71. },
  72. audioShow:function(e){
  73. if(this.data.audioPause == 0 && this.data.curAudioIndex != e.currentTarget.dataset.index){//播放语音,切换
  74. this.setData({
  75. curAudio: ""
  76. })
  77. this.setData({
  78. curAudioIndex: e.currentTarget.dataset.index,
  79. curAudio: e.currentTarget.dataset.url,
  80. })
  81. this.audioContext.play()
  82. this.setData({
  83. audioPause: 0
  84. })
  85. } else if(this.data.audioPause == 1 && this.data.curAudioIndex == e.currentTarget.dataset.index) {//暂停后恢复播放
  86. this.audioContext.play()
  87. this.setData({
  88. audioPause: 0
  89. })
  90. } else if(this.data.audioPause == 0 && this.data.curAudioIndex == e.currentTarget.dataset.index){//暂停播放
  91. this.audioContext.pause()
  92. this.setData({
  93. audioPause: 1
  94. })
  95. }
  96. },
  97. bindended:function(){
  98. this.setData({
  99. audioPause: 0,
  100. curAudioIndex: -1,
  101. curAudio: ''
  102. })
  103. },
  104. bindpause:function(){
  105. this.setData({
  106. audioPause: 1
  107. })
  108. },
  109. /**
  110. * 生命周期函数--监听页面加载
  111. */
  112. onLoad: function (options) {
  113. this.audioContext = wx.createAudioContext('audio-play')
  114. this.videoContext = wx.createVideoContext('play-video');// 创建 video 上下文 VideoContext 对象。
  115. const type = options.type
  116. if(type == 0){
  117. this.setData({
  118. doTaskFlag: true
  119. })
  120. }
  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. })