2025-10-10 10:56:33 +08:00
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { onHide, onLaunch, onShow } from '@dcloudio/uni-app'
|
|
|
|
|
|
import { navigateToInterceptor } from '@/router/interceptor'
|
2025-10-11 13:48:29 +08:00
|
|
|
|
import CacheManager from './utils/CacheManager'
|
2025-10-10 10:56:33 +08:00
|
|
|
|
|
|
|
|
|
|
onLaunch((options) => {
|
|
|
|
|
|
console.log('App Launch', options)
|
|
|
|
|
|
})
|
|
|
|
|
|
onShow((options) => {
|
2025-10-11 13:48:29 +08:00
|
|
|
|
// 测试本地缓存token
|
|
|
|
|
|
CacheManager.set('token', 'fdSeMVT0SxdGuq8aqAL0CARmFdybUegn')
|
2025-10-10 10:56:33 +08:00
|
|
|
|
console.log('App Show', options)
|
|
|
|
|
|
// 处理直接进入页面路由的情况:如h5直接输入路由、微信小程序分享后进入等
|
|
|
|
|
|
// https://github.com/unibest-tech/unibest/issues/192
|
|
|
|
|
|
if (options?.path) {
|
|
|
|
|
|
navigateToInterceptor.invoke({ url: `/${options.path}`, query: options.query })
|
|
|
|
|
|
}
|
|
|
|
|
|
else {
|
|
|
|
|
|
navigateToInterceptor.invoke({ url: '/' })
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
onHide(() => {
|
|
|
|
|
|
console.log('App Hide')
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
swiper,
|
|
|
|
|
|
scroll-view {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|