student.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. // pages/student/student.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. height: 0,
  11. animation: {},
  12. left: 750,
  13. shareImg: 'https://app.schoolwisdoms.com/static/app/student/imgs/share-bill.png',
  14. inviteConfig: {},
  15. count: 0,
  16. enroll: 0,
  17. coin: '0',
  18. invitations: []
  19. },
  20. closeCamera: function () {
  21. this.animation = wx.createAnimation({
  22. timingFunction: 'linear',
  23. duration: 400
  24. })
  25. const left = 750
  26. this.animation.translateX(left).step()
  27. this.setData({
  28. animation: this.animation.export()
  29. })
  30. },
  31. showCamaer: function () {
  32. this.animation = wx.createAnimation({
  33. timingFunction: 'linear',
  34. duration: 100
  35. })
  36. const left = 0
  37. this.animation.translateX(left).step()
  38. this.setData({
  39. animation: this.animation.export(),
  40. left
  41. })
  42. },
  43. scanCode: function (e) {
  44. console.log(JSON.stringify(e))
  45. },
  46. /**
  47. * 生命周期函数--监听页面加载
  48. */
  49. onLoad: function (options) {
  50. wx.getSystemInfo({
  51. success: (result) => {
  52. this.setData({
  53. height: result.windowHeight
  54. })
  55. },
  56. })
  57. this.queryInvitation(null);
  58. let t = this;
  59. setTimeout(() => {
  60. t.doSearch();
  61. }, 1000);
  62. },
  63. /**
  64. * 生命周期函数--监听页面初次渲染完成
  65. */
  66. onReady: function () {
  67. },
  68. /**
  69. * 生命周期函数--监听页面显示
  70. */
  71. onShow: function () {
  72. },
  73. /**
  74. * 生命周期函数--监听页面隐藏
  75. */
  76. onHide: function () {
  77. },
  78. /**
  79. * 生命周期函数--监听页面卸载
  80. */
  81. onUnload: function () {
  82. },
  83. /**
  84. * 页面相关事件处理函数--监听用户下拉动作
  85. */
  86. onPullDownRefresh: function () {
  87. },
  88. /**
  89. * 页面上拉触底事件的处理函数
  90. */
  91. onReachBottom: function () {
  92. },
  93. /**
  94. * 用户点击右上角分享
  95. */
  96. onShareAppMessage: function () {
  97. },
  98. queryInvitation: function (methodName) {
  99. let urls = urlDef.urls
  100. let stu = wx.getStorageSync('student');
  101. let inviteConfig = {}
  102. util.apiPost(urls.get_activity_share + '&q.orgId=' + stu.orgId).then((rs) => {
  103. if (rs && rs.length > 0) {
  104. let r = rs[0];
  105. inviteConfig.title = (r.name ? r.name : '邀请有礼');
  106. inviteConfig.description = (r.remark ? r.remark : '邀请新学员,赢得奖励');
  107. inviteConfig.imageUrl = r.imgUrl;
  108. if (r.activityUrl && r.activityUrl.length > 0) {
  109. inviteConfig.url = r.activityUrl + (r.activityUrl.indexOf('?') === -1 ? '?' : '&') + 'studentId=' + stu.studentId + '&orgId=' + stu.orgId;
  110. }
  111. this.setData({ inviteConfig: inviteConfig })
  112. if ('billShare' === methodName) {
  113. this.billShare();
  114. }
  115. if ('share' === methodName) {
  116. this.share();
  117. }
  118. if ('codeInvite' === methodName) {
  119. this.codeInvite();
  120. }
  121. }
  122. });
  123. },
  124. doSearch: function () {
  125. let urls = urlDef.urls
  126. let stu = wx.getStorageSync('student');
  127. util.apiPost(urls.get_invitation_count + '&q.introducer=' + stu.studentId).then(rs => {
  128. if (rs) {
  129. this.setData({ count: rs.num })
  130. }
  131. });
  132. util.apiPost(urls.get_invitation_enroll + '&q.introducer=' + stu.studentId).then(rs => {
  133. if (rs) {
  134. this.setData({ enroll: rs.num })
  135. }
  136. });
  137. util.apiPost(urls.get_invitation_coin + '&q.introducer=' + stu.studentId).then(rs => {
  138. if (rs && rs.length > 0) {
  139. let i = 0;
  140. let coin = ''
  141. rs.forEach(r => {
  142. coin += (r.amount + '<view class=\'unit\'>' + (r.type === 1 ? '元' : '课时') + '</view>');
  143. if (i < rs.length - 1) {
  144. coin += '<view class=\'sl\'>/</view>';
  145. }
  146. i++;
  147. });
  148. this.setData({ coin: coin })
  149. }
  150. });
  151. util.apiPost(urls.query_invitation_list + '&q.introducer=' + stu.studentId).then(rs => {
  152. if (rs) {
  153. rs.map(o => {
  154. o.name = o.studentName ? o.studentName : o.clientName
  155. o.statusText = this.getStatus(o)
  156. o.face = this.getHead(o)
  157. })
  158. this.setData({ invitations: rs })
  159. }
  160. });
  161. },
  162. getHead(item) {
  163. let urls = urlDef.urls
  164. return item.imageUrl ? urls.oss_file + 'image/' + item.imageUrl : '/images/head.png';
  165. },
  166. getStatus(item) {
  167. if (item.orderCount > 0) { // 有已付款的订单
  168. return '已报名';
  169. } else {
  170. if (item.isAudition === 0) { // 未试听
  171. return '已注册';
  172. }
  173. return '已试听';
  174. }
  175. },
  176. billShare: function () {
  177. if (this.data.inviteConfig.url && this.data.inviteConfig.url.length > 4) {
  178. console.log('弹出海报分享页面')
  179. // this.modal = this.modalCtrl.create('BillSharePage', { item: this.inviteConfig });
  180. // this.modal.present();
  181. } else {
  182. this.queryInvitation('billShare');
  183. }
  184. },
  185. share: function () {
  186. if (this.data.inviteConfig.url && this.data.inviteConfig.url.length > 4) {
  187. // this.modal = this.modalCtrl.create('SharePage', { item: this.inviteConfig });
  188. // this.modal.present();
  189. console.log('弹出享页面')
  190. } else {
  191. this.queryInvitation('share');
  192. }
  193. },
  194. codeInvite: function () {
  195. let urls = urlDef.urls
  196. if (this.data.inviteConfig.url && this.data.inviteConfig.url.length > 4) {
  197. let regUrl = this.data.inviteConfig.url;
  198. let imgUrl = urls.get_qr_code + '?content=' + encodeURIComponent(regUrl);
  199. this.openModal(imgUrl);
  200. } else {
  201. this.queryInvitation('codeInvite');
  202. }
  203. },
  204. openModal: function (imgUrl) {
  205. // 弹出页面
  206. console.log('...' + imgUrl)
  207. }
  208. })