2023-09-18 07:35:21 +00:00
|
|
|
<script>
|
2023-09-19 03:07:21 +00:00
|
|
|
import tabBar from "./util/tabbar";
|
2023-09-19 02:50:09 +00:00
|
|
|
|
2023-09-19 03:05:39 +00:00
|
|
|
export default {
|
|
|
|
onLaunch: function() {
|
2023-09-19 03:07:21 +00:00
|
|
|
uni.hideTabBar();
|
|
|
|
uni.setStorageSync("tabBar", tabBar);
|
2023-09-19 03:05:39 +00:00
|
|
|
},
|
|
|
|
onShow: function() {
|
|
|
|
console.log("App Show");
|
|
|
|
},
|
|
|
|
onHide: function() {
|
|
|
|
console.log("App Hide");
|
|
|
|
}
|
|
|
|
};
|
2023-09-18 07:35:21 +00:00
|
|
|
</script>
|
|
|
|
|
2023-09-19 03:05:39 +00:00
|
|
|
<style lang="scss">
|
|
|
|
@import "uview-ui/index.scss";
|
2023-09-19 07:48:24 +00:00
|
|
|
@import "./tm-vuetify/mian.min.css";
|
|
|
|
@import "./tm-vuetify/scss/theme.css";
|
|
|
|
|
2023-09-19 03:48:23 +00:00
|
|
|
.u-tabbar__content{
|
|
|
|
height: 166rpx;
|
|
|
|
}
|
|
|
|
.u-border-top{
|
|
|
|
border: none!important;
|
|
|
|
}
|
2023-09-18 07:35:21 +00:00
|
|
|
</style>
|