bindadmin.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. // pages/bindadmin/bindadmin.js
  2. const api = require("../../api/api");
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. navbarData: {
  9. showCapsule: 0, //是否显示左上角图标 1表示显示 0表示不显示
  10. title: '成为管理员', //导航栏 中间的标题
  11. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  12. },
  13. user_name: '', //邀请人姓名
  14. user_avatar: '', //头像
  15. user_id: 0, //邀请人ID
  16. admin_id: 0, //管理员ID
  17. code: '', //小程序授权Code
  18. },
  19. /**
  20. * 生命周期函数--监听页面加载
  21. */
  22. onLoad(options) {
  23. // console.log(options);
  24. this.setData({
  25. user_name: options.user_name,
  26. user_avatar: options.user_avatar,
  27. user_id: Number(options.user_id)
  28. })
  29. },
  30. /**
  31. * 生命周期函数--监听页面初次渲染完成
  32. */
  33. onReady() {
  34. },
  35. /**
  36. * 生命周期函数--监听页面显示
  37. */
  38. onShow() {
  39. let that = this;
  40. if (!wx.getStorageSync('login')) {
  41. that.getCode()
  42. }
  43. },
  44. /**
  45. * 生命周期函数--监听页面隐藏
  46. */
  47. onHide() {
  48. },
  49. /**
  50. * 生命周期函数--监听页面卸载
  51. */
  52. onUnload() {
  53. },
  54. /**
  55. * 页面相关事件处理函数--监听用户下拉动作
  56. */
  57. onPullDownRefresh() {
  58. },
  59. /**
  60. * 页面上拉触底事件的处理函数
  61. */
  62. onReachBottom() {
  63. },
  64. /**
  65. * 用户点击右上角分享
  66. */
  67. onShareAppMessage() {
  68. },
  69. // 获取小程序授权Code
  70. getCode() {
  71. let that = this;
  72. wx.login({
  73. success(res) {
  74. console.log(res);
  75. if (res.errMsg.search('ok')) {
  76. that.setData({
  77. code: res.code
  78. })
  79. } else {
  80. wx.showToast({
  81. title: res.errMsg,
  82. icon: 'error',
  83. mask: true
  84. })
  85. }
  86. }
  87. })
  88. },
  89. // 绑定管理员
  90. bindAdmin() {
  91. let that = this;
  92. // 检查用户是否登录
  93. if (wx.getStorageSync('login') && wx.getStorageSync('userinfo')) {
  94. // 用户已登录
  95. let admin_id = wx.getStorageSync('userinfo').id;
  96. wx.showLoading({
  97. title: '正在绑定',
  98. mask: true
  99. })
  100. wx.request({
  101. url: api.Administrators_add,
  102. header: {
  103. 'Authorization': wx.getStorageSync('token')
  104. },
  105. method: 'POST',
  106. data: {
  107. user_id: that.data.user_id,
  108. admin_id: admin_id
  109. },
  110. success(res) {
  111. console.log(res);
  112. wx.hideLoading()
  113. if (res.data.code === 1) {
  114. wx.showToast({
  115. title: '提交成功',
  116. icon: 'success',
  117. mask: true,
  118. success() {
  119. setTimeout(() => {
  120. wx.reLaunch({
  121. url: '/pages/mine/mine',
  122. })
  123. }, 1500)
  124. }
  125. })
  126. } else {
  127. wx.showToast({
  128. title: res.data.msg,
  129. mask: true,
  130. icon: 'none'
  131. })
  132. }
  133. },
  134. fail(err) {
  135. wx.hideLoading()
  136. wx.showToast({
  137. title: '发起网络请求失败',
  138. icon: 'none',
  139. mask: true
  140. })
  141. },
  142. complete() {
  143. // wx.hideLoading()
  144. }
  145. })
  146. } else {
  147. // 用户未登录
  148. that.login()
  149. }
  150. },
  151. // 用户登录
  152. login() {
  153. let that = this;
  154. wx.getUserProfile({
  155. desc: '登录',
  156. success: (res) => {
  157. // console.log(res);
  158. wx.showLoading({
  159. title: '登录中',
  160. mask: true
  161. })
  162. wx.request({
  163. url: api.weChatLogin,
  164. data: {
  165. code: that.data.code,
  166. headimg: res.userInfo.avatarUrl,
  167. name: res.userInfo.nickName
  168. },
  169. method: 'POST',
  170. success(res) {
  171. console.log(res);
  172. if (res.data.code === 1) {
  173. wx.setStorageSync('token', res.data.data);
  174. // 获取用户个人信息-开始
  175. wx.showLoading({
  176. title: '登录中',
  177. mask: true
  178. })
  179. wx.request({
  180. url: api.user_info,
  181. header: {
  182. 'Authorization': wx.getStorageSync('token')
  183. },
  184. success(res) {
  185. console.log(res);
  186. if (res.data.code === 1) {
  187. wx.setStorageSync('login', true);
  188. wx.setStorageSync('userinfo', res.data.data);
  189. // 登录并获取个人信息成功,开始绑定管理员
  190. that.bindAdmin()
  191. } else {
  192. wx.showToast({
  193. title: res.data.msg,
  194. mask: true,
  195. icon: 'none'
  196. })
  197. }
  198. },
  199. fail(err) {
  200. wx.showToast({
  201. title: '发起网络请求失败',
  202. icon: 'none',
  203. mask: true
  204. })
  205. },
  206. complete() {
  207. wx.hideLoading()
  208. }
  209. // 获取用户个人信息-结束
  210. })
  211. } else {
  212. wx.showToast({
  213. title: res.data.msg,
  214. mask: true,
  215. icon: 'none'
  216. })
  217. }
  218. },
  219. fail(err) {
  220. console.log(err);
  221. },
  222. complete() {
  223. wx.hideLoading()
  224. }
  225. })
  226. },
  227. fail: (err) => {
  228. console.log(err);
  229. }
  230. })
  231. },
  232. })