uni-Identify-quality/App.vue

33 lines
578 B
Vue
Raw Normal View History

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 11:20:43 +00:00
.u-tabbar__content {
2023-09-19 03:48:23 +00:00
height: 166rpx;
}
2023-09-19 11:20:43 +00:00
.u-border-top {
border: none !important;
}
2023-09-19 11:18:11 +00:00
page {
background: url("@/static/image/login-bg.png") no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
2023-09-19 03:48:23 +00:00
}
2023-09-18 07:35:21 +00:00
</style>