123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <script>
- export default {
- onLaunch: function () {
-
-
- const userInfo = uni.getStorageSync('token');
- if (userInfo) {
- uni.reLaunch({
- url: '/pages/index/index'
- });
- } else {
- uni.navigateTo({
- url: '/pages/login/login'
- });
- }
-
- },
- onShow: function () {
-
- },
- onHide: function () {},
- methods: {}
- };
- </script>
- <style lang="scss">
- @import '@/common/style.scss';
- @import 'uview-ui/index.scss';
- page {
- background-color:
- font-family: '宋体';
- padding: 10px;
- }
- .bottom-safety {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- uni-modal {
- z-index: 19999 !important;
- }
- button::after {
- border: none;
- }
- @font-face {
- font-family: 'iconfont';
- src: url('https://at.alicdn.com/t/c/font_3725442_m340vapx8g.ttf?t=1690817905330') format('truetype');
-
- }
- .icon {
- font-family: iconfont;
- }
- </style>
|