App.vue 997 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. //#ifdef APP-PLUS
  5. //获取已保存在本地的用户信息,该内容在登录页面登录成功之后,才保存到本地的
  6. const userInfo = uni.getStorageSync('token');
  7. if (userInfo) {
  8. uni.reLaunch({
  9. url: "/pages/index/index",
  10. })
  11. } else {
  12. uni.navigateTo({
  13. url: '/pages/login/login'
  14. });
  15. }
  16. //#endif
  17. },
  18. onShow: function() {
  19. //this.getAuth();
  20. },
  21. onHide: function() {},
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. /*每个页面公共css */
  28. /* uView基础样式 */
  29. @import "uview-ui/index.scss";
  30. //全局页面背景色
  31. page {
  32. // background-color: #f7f7f7;
  33. }
  34. // 点击时背景灰色
  35. // .hover-class{
  36. // background-color: #f7f7f7!important;
  37. // }
  38. //底部安全距离
  39. .bottom-safety {
  40. padding-bottom: constant(safe-area-inset-bottom);
  41. padding-bottom: env(safe-area-inset-bottom);
  42. }
  43. //全局白色背景
  44. .bgc-f {
  45. background-color: #ffffff;
  46. }
  47. </style>