mine.js 5.6 KB

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