Files
ys-app/src/App.vue

30 lines
627 B
Vue
Raw Normal View History

2025-07-22 11:21:01 +08:00
<template>
</template>
<script setup>
2025-08-19 13:27:26 +08:00
// import { onLaunch } from '@dcloudio/uni-app';
// onLaunch((opt) => {
// console.log("onLaunch")
2025-08-01 18:12:36 +08:00
2025-08-19 13:27:26 +08:00
// uni.preloadPage({ url: "/pages/login/login" });
// uni.preloadPage({ url: "/pages/home/home" });
// uni.preloadPage({ url: "/pages/business/business" });
// uni.preloadPage({ url: "/pages/notice/notice" });
// uni.preloadPage({ url: "/pages/userinfo/userinfo" });
// })
2025-07-22 11:21:01 +08:00
</script>
<style>
@import '@/static/common.css';
2025-08-01 18:12:36 +08:00
.uni-app--show{
opacity:1;
transition: opacity 0.3s;
}
.uni-app--hide {
opacity:0;
transition:opacity 0.3s;
}
2025-07-22 11:21:01 +08:00
</style>