App.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: #e2e2e2;
  33. font-family: '宋体';
  34. padding: 10px;
  35. }
  36. // 点击时背景灰色
  37. // .hover-class{
  38. // background-color: #f7f7f7!important;
  39. // }
  40. //底部安全距离
  41. .bottom-safety {
  42. padding-bottom: constant(safe-area-inset-bottom);
  43. padding-bottom: env(safe-area-inset-bottom);
  44. }
  45. //全局白色背景
  46. .bgc-f {
  47. background-color: #ffffff;
  48. }
  49. </style>