| 1234567891011121314151617181920212223 |
- <template>
- <view class="launch-page" />
- </template>
- <script setup>
- import { onLoad } from '@dcloudio/uni-app'
- import { userToken } from '@/composables/config'
- onLoad(() => {
- if (!userToken.value) {
- uni.reLaunch({ url: '/pages/login/index' })
- } else {
- uni.reLaunch({ url: '/pages/customer/index' })
- }
- })
- </script>
- <style scoped>
- .launch-page {
- min-height: 100vh;
- background-color: #fff;
- }
- </style>
|