增加 常用服务查询及修改
This commit is contained in:
15
src/App.vue
15
src/App.vue
@@ -7,11 +7,24 @@
|
||||
import { onLaunch } from '@dcloudio/uni-app';
|
||||
onLaunch((opt) => {
|
||||
console.log("onLaunch")
|
||||
|
||||
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" });
|
||||
})
|
||||
|
||||
|
||||
</script>
|
||||
<style>
|
||||
@import '@/static/common.css';
|
||||
|
||||
.uni-app--show{
|
||||
opacity:1;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
.uni-app--hide {
|
||||
opacity:0;
|
||||
transition:opacity 0.3s;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user