You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
492 B
Vue

1 year ago
<script>
1 year ago
import tabBar from "./util/tabbar";
1 year ago
1 year ago
export default {
onLaunch: function() {
1 year ago
uni.hideTabBar();
uni.setStorageSync("tabBar", tabBar);
1 year ago
},
onShow: function() {
console.log("App Show");
},
onHide: function() {
console.log("App Hide");
}
};
1 year ago
</script>
1 year ago
<style lang="scss">
@import "uview-ui/index.scss";
1 year ago
page {
background: url("@/static/image/login-bg.png") no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
}
1 year ago
</style>