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