art.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. // pages/art/art.js
  2. const app = getApp()
  3. const util = require('../../utils/util.js');
  4. const APIClient = require('../../utils/APIClient.js');
  5. const login = require('../../utils/loginSchedule.js');
  6. /**
  7. * productionData 分项data
  8. * questionsData 疑问data
  9. * courseData 科目信息
  10. * num1 分享得值
  11. * num2 科目得值
  12. * position 定位id值
  13. * questionsdian 点的显示
  14. * list 更改后时间的值
  15. * lessonListHeight 定义高度
  16. * previewHeight 定义高度
  17. * productionMore和questionsMore展开是否显示
  18. * strategy 更改<br>
  19. * 其他的页面组件就看这个就行了 基本上都是都是一样的
  20. */
  21. Page({
  22. data: {
  23. productionData: {},
  24. questionsData: {},
  25. courseData: {},
  26. num1: 0,
  27. num2: 0,
  28. position: '',
  29. questionsdian: '',
  30. list: [],
  31. lessonListHeight: '',
  32. previewHeight: '',
  33. productionMore: '',
  34. questionsMore: '',
  35. wxObjectives: [],
  36. canvasHeight: '',
  37. flag: true,
  38. materialData: [],
  39. loginType: 1,
  40. timeList: [],
  41. teacher: ''
  42. },
  43. /* 区分答疑和分享 */
  44. distinction: function(type, columnId, pageNo, pageSize, success) {
  45. login.getOpenidSessionKey(function(res) {
  46. //console.log(res.data.data.uid);
  47. APIClient.getProductionSchedule({
  48. uid: res.data.data.uid
  49. }, {
  50. "type": type,
  51. "category": columnId,
  52. "pageNo": pageNo,
  53. "pageSize": pageSize
  54. }).success(success)
  55. }, function() {
  56. });
  57. },
  58. /*点击加载更多*/
  59. onMyEvent: function(e){
  60. let type = e.currentTarget.dataset.type;
  61. const columnId = util.column('6').columnId;
  62. if(type == 1) {
  63. this.data.num1++
  64. this.setData({
  65. num1: this.data.num1
  66. })
  67. this.distinction(type, columnId, 1, 5*this.data.num1, res => {
  68. if(res.data.success) {
  69. console.log(res.data.data)
  70. this.setData({
  71. questionsData: res.data.data,
  72. })
  73. if(res.data.data) {
  74. res.data.data.list.forEach(item => {
  75. this.data.timeList.push(util.formatDate(item.gmtCreated,4));
  76. });
  77. this.setData({
  78. timeList: this.data.timeList,
  79. questionsdian: util.replyNo(res.data.data.list)
  80. })
  81. if(5*this.data.num1 > res.data.data.totalSize) {
  82. this.setData({
  83. questionsMore: ''
  84. })
  85. }
  86. }
  87. }
  88. });
  89. }
  90. if(type == 2) {
  91. this.data.num2++
  92. this.setData({
  93. num: this.data.num2
  94. })
  95. this.distinction(type, columnId, 1, 5*this.data.num2, res => {
  96. if(res.data.success) {
  97. console.log(res.data.data)
  98. res.data.data.list.forEach(item => {
  99. this.data.timeList.push(util.formatDate(item.gmtCreated,4));
  100. });
  101. this.setData({
  102. timeList: this.data.timeList,
  103. productionData: res.data.data
  104. })
  105. if(5*this.data.num2 > res.data.data.totalSize) {
  106. this.setData({
  107. productionMore: ''
  108. })
  109. }
  110. }
  111. });
  112. }
  113. },
  114. /*点击获取canvas高度*/
  115. onGetHeight: function (e) {
  116. const canvasHeight = this.selectComponent("#chat").data.canvasHeight;
  117. this.setData({
  118. canvasHeight,
  119. })
  120. },
  121. /*点击定位*/
  122. location: function (e) {
  123. const position = e.currentTarget.dataset.id;
  124. console.log(position)
  125. this.setData({
  126. position
  127. })
  128. },
  129. onLoad: function (options) {
  130. //this.chat = this.selectComponent("#chat");
  131. if(options.type == "noTv") {
  132. this.setData({
  133. loginType: ""
  134. })
  135. }
  136. if(wx.getStorageSync('user')) {
  137. this.setData({
  138. teacher: wx.getStorageSync('user').data.data.isTeacher
  139. })
  140. }
  141. const columnId = util.column('6').columnId;
  142. /* 分享 */
  143. this.distinction(2, columnId, 1, 2, res => {
  144. if(res.data.success) {
  145. console.log(res.data.data)
  146. this.setData({
  147. productionData: res.data.data
  148. })
  149. if(res.data.data) {
  150. res.data.data.list.forEach(item => {
  151. this.data.timeList.push(util.formatDate(item.gmtCreated,4));
  152. });
  153. this.setData({
  154. timeList: this.data.timeList,
  155. })
  156. if(res.data.data.totalSize > 2) {
  157. this.setData({
  158. productionMore: true
  159. })
  160. }
  161. }
  162. }
  163. });
  164. /* 答疑 */
  165. this.distinction(1, columnId, 1, 2, res => {
  166. if(res.data.success) {
  167. console.log(res.data.data)
  168. this.setData({
  169. questionsData: res.data.data
  170. })
  171. if(res.data.data) {
  172. res.data.data.list.forEach(item => {
  173. this.data.timeList.push(util.formatDate(item.gmtCreated,4));
  174. });
  175. this.setData({
  176. timeList: this.data.timeList,
  177. questionsdian: util.replyNo(res.data.data.list)
  178. })
  179. if(res.data.data.totalSize > 2) {
  180. this.setData({
  181. questionsMore: true
  182. })
  183. }
  184. }
  185. }
  186. });
  187. /*科目信息*/
  188. login.getOpenidSessionKey((res) => {
  189. APIClient.getEachSchedule({
  190. uid: res.data.data.uid
  191. }, {
  192. "category": 6
  193. }).success((res) => {
  194. const lessonListLength = util.studyPageTime(res.data.data.lessonPage.list).length;
  195. const previewLength = util.filter(res.data.data.lessonPage.list).length;
  196. console.log(res)
  197. if(lessonListLength > 4) {
  198. this.setData({
  199. lessonListHeight: 144
  200. })
  201. }
  202. if(previewLength > 4){
  203. this.setData({
  204. previewHeight: 144
  205. })
  206. }
  207. this.setData({
  208. courseData: res.data.data,
  209. materialData: util.filter(res.data.data.lessonPage.list),
  210. list: util.studyPageTime(res.data.data.lessonPage.list),
  211. wxObjectives: util.strategy(res.data.data.weekCourseConfig.wxObjectives)
  212. })
  213. })
  214. }, () => {
  215. this.setData({
  216. flag: !this.data.flag
  217. })
  218. }, this.data.loginType);
  219. },
  220. onShow: function () {
  221. },
  222. keep: function () {
  223. },
  224. /* 转发*/
  225. onShareAppMessage: function (ops) {
  226. if (ops.from === 'button') {
  227. // 来自页面内转发按钮
  228. console.log(ops.target)
  229. }
  230. const postId = ops.target.dataset.postid;
  231. const imageUrl= ops.target.dataset.imageurl[0];
  232. return {
  233. title: '小学王者班',
  234. path: `pages/transmit/transmit?ind=7&postId=${postId}`,
  235. imageUrl,
  236. success: function (res) {
  237. // 转发成功
  238. console.log("转发成功:" + JSON.stringify(res));
  239. },
  240. fail: function (res) {
  241. // 转发失败
  242. console.log("转发失败:" + JSON.stringify(res));
  243. }
  244. }
  245. },
  246. /*获取个人信息弹框*/
  247. jurisdiction: function () {
  248. this.setData({
  249. flag: !this.data.flag
  250. })
  251. this.onLoad();
  252. },
  253. })