art.js 7.2 KB

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