App.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <script>
  2. export default {
  3. onLaunch: function () {
  4. // this.handleUrl(location.href);
  5. //判断客户端类别
  6. if (/MicroMessenger/.test(window.navigator.userAgent)) {
  7. uni.setStorage({
  8. key: 'userAgent',
  9. data: 'wxAgent'
  10. });
  11. console.log('微信客户端');
  12. } else if (/AlipayClient/.test(window.navigator.userAgent)) {
  13. uni.setStorage({
  14. key: 'userAgent',
  15. data: 'aliAgent'
  16. });
  17. console.log('支付宝客户端');
  18. } else {
  19. uni.setStorage({
  20. key: 'userAgent',
  21. data: 'otherAgent'
  22. });
  23. console.log('其他浏览器');
  24. }
  25. // 判断从什么入口进入 车位锁等页面无需调用
  26. const backUrl = location.href,
  27. openidPage = this.config.onlyWxLogin, // 只需要穿openid的页面集合
  28. needValidPage = openidPage.filter((item) => backUrl.indexOf(item) > -1); // 是否为需要验证的页面集合
  29. const { openId } = this.vuex_wxinfo;
  30. console.log('openId', openId);
  31. console.log('needValidPage', needValidPage);
  32. if (openId && needValidPage.length === 0) {
  33. this.getUserInfo(openId);
  34. }
  35. // 获取参数
  36. const paramsValidPage = openidPage.filter((item) => backUrl.indexOf(item) > -1);
  37. if (paramsValidPage.length === 0 || this.vuex_token) {
  38. this.getFreeTime();
  39. }
  40. },
  41. onShow: function () {
  42. console.log('App Show');
  43. },
  44. onHide: function () {
  45. // console.log('App Hide')
  46. },
  47. methods: {
  48. /**
  49. * @description:
  50. * @param {*} openId
  51. * @return {*}
  52. */
  53. async getUserInfo(openId) {
  54. try {
  55. const queryParams = {
  56. loginType: 1,
  57. openid: openId,
  58. nickName: this?.vuex_wxinfo?.nickname,
  59. avatar: this?.vuex_wxinfo?.headImgUrl
  60. };
  61. const userInfo = await this.$u.api.userLoginApi.openidLoginApi({ ...queryParams });
  62. const { accessToken, needVerify } = userInfo.data;
  63. this.$u.vuex('vuex_token', accessToken);
  64. this.$u.vuex('vuex_hasLogin', true);
  65. if (needVerify) {
  66. localStorage.setItem('backUrl', this.backUrl);
  67. this.$u.route({
  68. url: 'pages/center/phoneLogin/phoneLogin',
  69. type: 'reLaunch'
  70. });
  71. }
  72. } catch (error) {
  73. this.$refs.uToast.show({
  74. title: '获取用户信息失败!',
  75. type: 'error'
  76. });
  77. }
  78. },
  79. /**
  80. * @description: 获取参数免费时长
  81. * @return {*}
  82. */
  83. async getFreeTime() {
  84. try {
  85. const { msg } = await this.$u.api.getParamsApi({ key: 'park.lock.freetime' });
  86. this.$u.vuex('free_time', msg);
  87. } catch (error) {
  88. // console.log(error);
  89. }
  90. },
  91. /**
  92. * @description: 首次加载url加入时间戳,防止页面未进行刷新
  93. * @param {*} url
  94. * @return {*}
  95. */
  96. handleUrl(url) {
  97. // 判断时间戳是否存在
  98. if (url.indexOf('_t') < 0) {
  99. // 判断?是否存在 存在直接拼接后面 不存在需要拼接?
  100. location.href = url.indexOf('?') > -1 ? `${url}&_t=${Date.now()}` : `${url}?_t=${Date.now()}`;
  101. }
  102. }
  103. }
  104. };
  105. </script>
  106. <style lang="scss">
  107. /*每个页面公共css */
  108. @import '/static/quill/quill.bubble.scss';
  109. @import '/static/quill/quill.snow.scss';
  110. @import '/static/quill/quill.core.scss';
  111. @import './static/css/iconfont.css';
  112. @import './static/iconfont/iconfont.css';
  113. @import 'uview-ui/index.scss';
  114. @import '/static/css/public.scss';
  115. </style>