index.js 712 B

1234567891011121314151617181920212223242526272829303132333435
  1. // pages/mine/setting/index.js
  2. const app = getApp();
  3. const {
  4. openIM
  5. } = app.globalData;
  6. Page({
  7. data: {
  8. userInfo: {}
  9. },
  10. onShow(options) {
  11. const that = this;
  12. const userInfo = wx.getStorageSync('userInfo')
  13. that.setData({
  14. userInfo
  15. })
  16. },
  17. //退出登录
  18. logOut() {
  19. wx.showModal({
  20. content: "您确定要退出登录吗",
  21. confirmText: "退出登录",
  22. confirmColor: "#FF0000",
  23. success: function (res) {
  24. if (res.confirm) {
  25. wx.clearStorageSync()
  26. app.loginout();
  27. wx.switchTab({
  28. url: '/page/tabBar/mine/index',
  29. })
  30. app.getWxCode();
  31. } else if (res.cancel) {}
  32. }
  33. })
  34. },
  35. })