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.

43 lines
1.0 KiB
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.setStorageSync("token",'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJJRCI6MCwiT3BlbklkIjoib01qYXY2eFFjQUttUW1ZUTFXV20zOXlCQUZ4byIsIk5pY2tOYW1lIjoiIiwiVGVsTnVtIjoiMTgyMDUwNTI2MjciLCJBdmF0YXIiOiIiLCJJRE51bSI6IiIsImV4cCI6MTY5NTQzNjEwMSwiaXNzIjoibWFsbCJ9.qYzFMtoOOBuawYDTl7iuwlTTz7Fakhr8657PjxWhQ8I')
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-upload__wrap{
display: flex;
justify-content: center;
align-items: center;
}
1 year ago
.tm-poup-wk{
height: initial!important;
}
1 year ago
.u-upload__button{
width: 404rpx!important;
height: 306rpx!important;
}
1 year ago
.u-tabbar__content {
1 year ago
height: 166rpx;
}
1 year ago
.u-border-top {
border: none !important;
}
1 year ago
</style>