index.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. // pages/index/index.js
  2. const app = getApp()
  3. const util = require("../../utils/util")
  4. const urlDef = require("../../utils/urls")
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. array: ['艾克斯郎校区1', '艾克斯郎校区2', '艾克斯郎校区3', '艾克斯郎校区4'],
  11. index: 0,
  12. curStu: {},
  13. classList: [
  14. { img: '/images/kc.png', title: '今日课程', num: '0', url: "/pages/schedule/schedule" },
  15. { img: '/images/jtzy.png', title: '今日作业', num: '0',url: "/pages/task/task" },
  16. { img: '/images/cq.png', title: '出勤率', num: '0%',url:"/pages/classTotalList/classTotalList" },
  17. ],
  18. appList: [
  19. { img: '/images/kb.png', title: '我的课表',url:"/pages/schedule/schedule" },
  20. { img: '/images/zy.png', title: '提交作业',url:"/pages/task/task" },
  21. { img: '/images/dp.png', title: '课堂点评', url:"/pages/evaluation/evaluation"},
  22. { img: '/images/zj.png', title: '成长足迹', url:"/pages/growUp/growUp"},
  23. { img: '/images/qj.png', title: '请假',url:"/pages/leave/leave" },
  24. { img: '/images/bk.png', title: '补课',url:"/pages/lessons/lessons" },
  25. { img: '/images/jk.png', title: '加课' ,url: "/pages/addClass/addClass"},
  26. { img: '/images/dk.png', title: '调课' ,url: "/pages/theClasses/theClasses"},
  27. ],
  28. bannerList: [],
  29. userList: [],
  30. userItems: [],
  31. orgItems: [],
  32. stuShowList: [],
  33. teaShowList: [],
  34. },
  35. //切换身份
  36. changeStu: function (e) {
  37. let sid = e.currentTarget.dataset.id;
  38. this.doChangeUser(sid);
  39. },
  40. doChangeUser: function (sid) {
  41. if (this.data.curStu.studentId == sid) {
  42. console.log('无须切换')
  43. return;
  44. }
  45. wx.showLoading({
  46. title: '正在切换用户',
  47. mask: true
  48. })
  49. console.log('切换用户 : ' + sid);
  50. const urls = urlDef.urls;
  51. util.apiPost(urls.change_user, { targetId: sid }).then(rs => {
  52. wx.hideLoading();
  53. if (rs === 1) {
  54. console.log('切换成功');
  55. this.loadIndexData();
  56. } else {
  57. wx.showToast({
  58. title: '切换失败,请稍后重试',
  59. icon: 'none'
  60. })
  61. }
  62. });
  63. },
  64. //切换校区
  65. bindPickerChange: function (e) {
  66. let i = e.detail.value;
  67. if (i == this.data.index) {
  68. console.log('无须切换...');
  69. return;
  70. }
  71. // 取该校区 第1位学生 作为默认登录用户
  72. let targetId = this.data.orgItems[i].orgId;
  73. console.log('切换校区 ' + targetId);
  74. this.data.userItems.some(u => {
  75. console.log('用户: ' + JSON.stringify(u));
  76. if (u.orgId === targetId) {
  77. this.doChangeUser(u.studentId);
  78. this.setData({
  79. index: i
  80. });
  81. return true;
  82. }
  83. });
  84. },
  85. toPage: function (e) {
  86. if(typeof e.currentTarget.dataset.url == 'undefined'){
  87. return
  88. }
  89. wx.navigateTo({
  90. url: e.currentTarget.dataset.url,
  91. })
  92. },
  93. getMoreShow:function(){
  94. wx.navigateTo({
  95. url: '/pages/showVideoList/showVideoList',
  96. })
  97. },
  98. /**
  99. * 生命周期函数--监听页面加载
  100. */
  101. onLoad: function (options) {
  102. this.loadIndexData();
  103. },
  104. /**
  105. * 生命周期函数--监听页面初次渲染完成
  106. */
  107. onReady: function () {
  108. },
  109. /**
  110. * 生命周期函数--监听页面显示
  111. */
  112. onShow: function () {
  113. },
  114. /**
  115. * 生命周期函数--监听页面隐藏
  116. */
  117. onHide: function () {
  118. },
  119. /**
  120. * 生命周期函数--监听页面卸载
  121. */
  122. onUnload: function () {
  123. },
  124. /**
  125. * 页面相关事件处理函数--监听用户下拉动作
  126. */
  127. onPullDownRefresh: function () {
  128. },
  129. /**
  130. * 页面上拉触底事件的处理函数
  131. */
  132. onReachBottom: function () {
  133. },
  134. /**
  135. * 用户点击右上角分享
  136. */
  137. onShareAppMessage: function () {
  138. },
  139. strLen(s) {
  140. return (s ? s.length : 0)
  141. },
  142. loadVideoInfo: function (videos, personType) {
  143. let urls = urlDef.urls
  144. videos.forEach(v => {
  145. util.apiPost(urls.video_loadInfo + v.videoId).then((rs) => {
  146. v.imgUrl = rs.img
  147. v.playUrl = rs.url
  148. if (personType == 0) {
  149. this.setData({ 'stuShowList': videos })
  150. }
  151. if (personType == 1) {
  152. this.setData({ 'teaShowList': videos })
  153. }
  154. });
  155. });
  156. },
  157. queryVideoShow: function (personType) {
  158. const urls = urlDef.urls;
  159. //获取登录用户数据, 并加载首页数据
  160. util.apiPost(urls.person_video_list, { 'q.orgId': this.data.curStu.orgId, 'q.doPersonId': this.data.curStu.studentId, 'q.personType': personType, 'q.sortBy': 'rand', 'q.limit4': 'true' }).then(rs => {
  161. this.loadVideoInfo(rs, personType)
  162. })
  163. },
  164. queryStudentShow: function () {
  165. this.queryVideoShow(0)
  166. },
  167. queryTeacherShow: function () {
  168. this.queryVideoShow(1)
  169. },
  170. loadIndexData: function () {
  171. const urls = urlDef.urls;
  172. //获取登录用户数据, 并加载首页数据
  173. util.apiPost(urls.get_cur_user, {}).then(rs => {
  174. // console.log(JSON.stringify(rs));
  175. let userItems = rs.attr.others
  176. let orgItems = []
  177. userItems.forEach(u => {
  178. let exists = false;
  179. orgItems.some(o => {
  180. if (o.orgId === u.orgId) {
  181. exists = true;
  182. return true;
  183. }
  184. })
  185. if (!exists) {
  186. orgItems.push({ orgId: u.orgId, orgName: u.orgName })
  187. }
  188. if (u.id === rs.id) { // 当前用户
  189. let student = { studentId: u.studentId, orgId: u.orgId }
  190. this.setData({ 'curStu': student })
  191. // 放入 strong中
  192. wx.setStorageSync('student', student);
  193. }
  194. if (this.strLen(u.imageUrl) === 0) {
  195. u.imageUrl = '/images/head.png'
  196. } else {
  197. u.imageUrl = urls.oss_file + 'image/' + u.imageUrl
  198. }
  199. })
  200. this.setData({ 'userItems': userItems, 'orgItems': orgItems })
  201. let personId = rs.attr.personId
  202. let orgId = rs.attr.orgId
  203. let today = util.curTime().substring(0, 10).replace(/\//g, '-')
  204. // banner 图片
  205. util.apiPost(urls.get_advert, { '&q.use': 1, 'q.orgId': orgId, 'q.exceptStatus': 2 }).then(r => {
  206. // console.log('banner : ' + JSON.stringify(r));
  207. this.setData({ 'bannerList': r })
  208. });
  209. // 今日课程
  210. util.apiPost(urls.leave_get_classes_date, { 'q.studentId': personId, 'q.attenceDate': today }).then(r => {
  211. // console.log('今日课程 : ' + JSON.stringify(r));
  212. this.setData({ 'classList[0].num': (r ? r.length : 0) })
  213. })
  214. // 作业未提交
  215. util.apiPost(urls.my_homework, { 'q.studentId': personId, 'q.status': 0 }).then(r => {
  216. // console.log('作业未提交 : ' + JSON.stringify(r));
  217. this.setData({ 'classList[1].num': (r ? r.length : 0) })
  218. });
  219. // 出勤率
  220. util.apiPost(urls.get_attendance_rate, { 'q.studentId': personId }).then(r => {
  221. // console.log('出勤率 : ' + JSON.stringify(r));
  222. let attendRate = 0, alreadyCount = 0, shouldCount = 0;
  223. if (r != null) {
  224. r.forEach(it => {
  225. if (it.isAttend === '1') {
  226. alreadyCount = it.num
  227. } else if (it.isAttend === '0') {
  228. shouldCount = it.num
  229. }
  230. });
  231. }
  232. let t = (alreadyCount + shouldCount)
  233. if (t > 0) {
  234. attendRate = alreadyCount * 100 / t
  235. }
  236. this.setData({ 'classList[2].num': attendRate.toFixed(2) + '%' })
  237. })
  238. this.queryVideoShow(0)
  239. this.queryVideoShow(1)
  240. });
  241. },
  242. doThumbsUp: function (o) {
  243. const urls = urlDef.urls;
  244. let pid = this.data.curStu.studentId;
  245. let pt = o.detail.personType;
  246. let vid = o.detail.videoId;
  247. let entity = { videoId: vid, personId: pid, personType: pt, actionType: 1 };
  248. util.apiPost(urls.person_video_view_save, entity, 'application/json').then(rs => {
  249. if (pt == 0) {
  250. this.data.stuShowList.map(o => {
  251. if (o.videoId == vid) {
  252. o.goodCount += 1
  253. }
  254. })
  255. this.setData({ 'stuShowList': this.data.stuShowList })
  256. }
  257. if (pt == 1) {
  258. this.data.teaShowList.map(o => {
  259. if (o.videoId == vid) {
  260. o.goodCount += 1
  261. }
  262. })
  263. this.setData({ 'teaShowList': this.data.teaShowList })
  264. }
  265. }).catch(e => {
  266. console.log(e);
  267. })
  268. }
  269. })