2023-12-05 02:11:10 +00:00
|
|
|
<template>
|
|
|
|
</template>
|
2023-12-11 10:46:53 +00:00
|
|
|
<script setup>
|
|
|
|
import {onLaunch} from "@dcloudio/uni-app";
|
|
|
|
|
|
|
|
onLaunch(()=>{
|
|
|
|
console.log('onLaunch')
|
|
|
|
/* if (uni.getStorageSync('token')){
|
|
|
|
uni.navigateTo({
|
|
|
|
url: '/pages/index/index'
|
|
|
|
})
|
|
|
|
}else {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: '/pages/login/index'
|
|
|
|
})
|
|
|
|
}*/
|
|
|
|
})
|
|
|
|
</script>
|
2023-12-05 02:11:10 +00:00
|
|
|
<style>
|
|
|
|
/* #ifdef APP-PLUS-NVUE */
|
|
|
|
@import './tmui/scss/nvue.css';
|
|
|
|
/* #endif */
|
|
|
|
/* #ifndef APP-PLUS-NVUE */
|
|
|
|
@import './tmui/scss/noNvue.css';
|
|
|
|
/* #endif */
|
2023-12-11 10:46:53 +00:00
|
|
|
page{
|
|
|
|
display: flex;
|
|
|
|
}
|
2023-12-06 09:54:52 +00:00
|
|
|
</style>
|