1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <script>
- export default {
- onLaunch: function() {
- //#ifdef APP-PLUS
- //获取已保存在本地的用户信息,该内容在登录页面登录成功之后,才保存到本地的
- const userInfo = uni.getStorageSync('token');
- if (userInfo) {
- uni.reLaunch({
- url: "/pages/index/index",
- })
- } else {
- uni.navigateTo({
- url: '/pages/login/login'
- });
- }
- //#endif
- },
- onShow: function() {
- //this.getAuth();
- },
- onHide: function() {},
- methods: {
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- /* uView基础样式 */
- @import "uview-ui/index.scss";
- //全局页面背景色
- page{
- background-color: #e2e2e2;
- font-family: '宋体';
- padding: 10px;
- }
- // 点击时背景灰色
- // .hover-class{
- // background-color: #f7f7f7!important;
- // }
- //底部安全距离
- .bottom-safety {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- //全局白色背景
- .bgc-f {
- background-color: #ffffff;
- }
- </style>
|