uni-Identify-quality/App.vue
2023-09-20 19:59:14 +08:00

32 lines
518 B
Vue

<script>
import tabBar from "./util/tabbar";
export default {
onLaunch: function() {
uni.hideTabBar();
uni.setStorageSync("tabBar", tabBar);
},
onShow: function() {
console.log("App Show");
},
onHide: function() {
console.log("App Hide");
}
};
</script>
<style lang="scss">
@import "uview-ui/index.scss";
.u-tabbar__content {
height: 166rpx;
}
.u-border-top {
border: none !important;
}
page {
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
}
</style>