science.js 6.5 KB

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