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.

31 lines
534 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">
1 year ago
/*每个页面公共css */
@import "./tm-vuetify/mian.min.css";
@import "./tm-vuetify/scss/theme.css";
1 year ago
@import "uview-ui/index.scss";
1 year ago
.u-tabbar__content {
1 year ago
height: 166rpx;
}
1 year ago
.u-border-top {
border: none !important;
}
1 year ago
1 year ago
</style>