science.js 6.8 KB

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