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

33 lines
578 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: url("@/static/image/login-bg.png") no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
}
</style>