details.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. // pages/details/details.js
  2. import httpRequestApi from '../../utils/APIRequest';
  3. import util from '../../utils/util';
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. anthologyHide: true,
  10. detailsHide: true,
  11. hide: true,
  12. str: '',
  13. summary: '',
  14. courseWareList: [],
  15. courseId: '',
  16. favoritesFlag: false,
  17. title: '',
  18. iconImg: '',
  19. postsList: [],
  20. dateArr: [],
  21. playUrl: '',
  22. <<<<<<< HEAD
  23. courseWareId: '',
  24. currentVideo: 0
  25. =======
  26. courseWareId: ''
  27. >>>>>>> de0842070ba25769271f1a42d9839ec4b9d31b54
  28. },
  29. //点击收藏
  30. favorites: function () {
  31. this.setData({
  32. favoritesFlag: !this.data.favoritesFlag
  33. })
  34. httpRequestApi.getDetailsFavorites({
  35. targetCode: this.data.courseId,
  36. title: this.data.title,
  37. iconImg: this.data.iconImg
  38. }).success((res)=>{
  39. })
  40. },
  41. //点击添加到播放记录
  42. addHistory: function () {
  43. //console.log('播放',currentTarget.dataset);
  44. httpRequestApi.addPlayLogList({
  45. "title": this.data.title,
  46. "courseId": this.data.courseId,
  47. "courseWareId": this.data.courseWareId,
  48. "courseIcon": this.data.iconImg
  49. }).success(res => {
  50. })
  51. },
  52. //视频播放结束
  53. endplay: function () {
  54. const index = this.data.currentVideo + 1;
  55. this.setData({
  56. playUrl: this.data.courseWareList[index].playUrl,
  57. courseWareId: this.data.courseWareList[index].id,
  58. currentVideo: index
  59. })
  60. },
  61. //点击出现选集
  62. commentAnthology: function () {
  63. this.setData({
  64. anthologyHide: !this.data.anthologyHide
  65. })
  66. },
  67. //选择视频播放
  68. Anthology: function ({ currentTarget }) {
  69. const index = currentTarget.dataset.index;
  70. this.setData({
  71. playUrl: this.data.courseWareList[index].playUrl,
  72. courseWareId: this.data.courseWareList[index].id,
  73. currentVideo: index
  74. })
  75. },
  76. //出现详情页
  77. commentDetails: function () {
  78. this.setData({
  79. detailsHide: !this.data.detailsHide
  80. })
  81. },
  82. //点击评论
  83. pinglun: function () {
  84. this.setData({
  85. hide: !this.data.hide
  86. })
  87. },
  88. //点击取消
  89. no: function () {
  90. this.setData({
  91. hide: !this.data.hide,
  92. str: ''
  93. })
  94. },
  95. //点击确定评论
  96. yes: function () {
  97. if(this.data.str === '') {
  98. wx.showModal({
  99. title: '提示',
  100. content: '请输入内容'
  101. })
  102. return false;
  103. }
  104. httpRequestApi.getDetailsPosts({
  105. columnId: this.data.courseId,
  106. columnNames: this.data.title,
  107. detailDesc: this.data.str
  108. }).success((res)=>{
  109. if(res.data.success){
  110. wx.showToast({
  111. title: '评论成功'
  112. })
  113. this.setData({
  114. hide: !this.data.hide,
  115. str: ''
  116. })
  117. //获取评论列表
  118. this.getPostsList(this.data.courseId);
  119. }
  120. })
  121. },
  122. //获取输入值
  123. focus: function ({detail}) {
  124. this.setData({
  125. str: detail.value
  126. })
  127. },
  128. /**
  129. * 生命周期函数--监听页面加载
  130. */
  131. onLoad: function (options) {
  132. const courseId = options.id;
  133. console.log(courseId)
  134. httpRequestApi.getCourseDetails(courseId).success((res)=>{
  135. console.log('课程详情', res);
  136. const data = res.data.data;
  137. this.setData({
  138. favoritesFlag: data.isFavorites,
  139. title: data.course.title,
  140. iconImg: data.course.iconImg,
  141. courseId,
  142. summary: data.course.summary,
  143. courseWareList: data.courseWareList,
  144. playUrl: data.courseWareList[0].playUrl,
  145. courseWareId: data.courseWareList[0].id
  146. })
  147. })
  148. //获取评论列表
  149. this.getPostsList(courseId);
  150. },
  151. //获取评论列表
  152. getPostsList: function (courseId) {
  153. httpRequestApi.getPostsList({
  154. courseId,
  155. pageNo: 1,
  156. pageSize: 10
  157. }).success((res)=>{
  158. console.log('评论列表', res);
  159. const dateArr = [];
  160. res.data.data.list.forEach(item => {
  161. dateArr.push(util.formatTime(new Date(item.gmtCreated)));
  162. });
  163. this.setData({
  164. postsList: res.data.data.list,
  165. dateArr
  166. })
  167. })
  168. },
  169. /**
  170. * 生命周期函数--监听页面初次渲染完成
  171. */
  172. onReady: function () {
  173. },
  174. /**
  175. * 生命周期函数--监听页面显示
  176. */
  177. onShow: function () {
  178. },
  179. /**
  180. * 生命周期函数--监听页面隐藏
  181. */
  182. onHide: function () {
  183. },
  184. /**
  185. * 生命周期函数--监听页面卸载
  186. */
  187. onUnload: function () {
  188. },
  189. /**
  190. * 页面相关事件处理函数--监听用户下拉动作
  191. */
  192. onPullDownRefresh: function () {
  193. },
  194. /**
  195. * 页面上拉触底事件的处理函数
  196. */
  197. onReachBottom: function () {
  198. },
  199. /**
  200. * 用户点击右上角分享
  201. */
  202. onShareAppMessage: function (ops) {
  203. if (ops.from === 'button') {
  204. // 来自页面内转发按钮
  205. console.log(ops.target)
  206. }
  207. return {
  208. title: '七彩童年',
  209. path: `pages/details/details`,
  210. success: function (res) {
  211. // 转发成功
  212. console.log("转发成功:" + JSON.stringify(res));
  213. // var shareTickets = res.shareTickets;
  214. // if (shareTickets.length == 0) {
  215. // return false;
  216. // }
  217. // //可以获取群组信息
  218. // wx.getShareInfo({
  219. // shareTicket: shareTickets[0],
  220. // success: function (res) {
  221. // console.log(res)
  222. // }
  223. // })
  224. },
  225. fail: function (res) {
  226. // 转发失败
  227. console.log("转发失败:" + JSON.stringify(res));
  228. }
  229. }
  230. }
  231. })