uni-admission-fee/App.vue

26 lines
481 B
Vue
Raw Normal View History

2023-10-27 05:40:47 +00:00
<script>
2023-10-27 08:43:30 +00:00
export default {
onLaunch: function () {
uni.hideTabBar();
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
}
}
2023-10-27 05:40:47 +00:00
</script>
<style lang="scss">
2023-10-27 08:43:30 +00:00
/*每个页面公共css */
@import "uview-ui/index.scss";
@import "@/common/default.scss";
page {
background: url("./static/bg-common.png") no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
}
2023-10-27 05:40:47 +00:00
</style>