2023-09-18 07:35:21 +00:00
|
|
|
<script>
|
2023-09-19 03:07:21 +00:00
|
|
|
import tabBar from "./util/tabbar";
|
2023-09-19 02:50:09 +00:00
|
|
|
|
2023-09-19 03:05:39 +00:00
|
|
|
export default {
|
|
|
|
onLaunch: function() {
|
2023-09-26 12:01:27 +00:00
|
|
|
// uni.setStorageSync("token",'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJJRCI6MCwiT3BlbklkIjoib01qYXY2NjlHMEtKcFlKNE1qWGhyNEh5cHhBUSIsIk5pY2tOYW1lIjoi5YiY5bCP5benIiwiVGVsTnVtIjoiMTUyNjI0ODE0OTgiLCJBdmF0YXIiOiJodHRwczovL2NkbnMuZm9udHJlZS5jbi9pbnZlbnRvcnkvZmlsZXMvaW1nL2MzNWQ1ODVhLTVjNTMtMTFlZS04OGRmLTAyNDJhYzEzMDAyNS5qcGciLCJJRE51bSI6IjMyMDMyNDE5OTAwNTA5NjY0WCIsImV4cCI6MTY5NTgxMTk4NCwiaXNzIjoibWFsbCJ9.QDDAiN5xFtL7BelKfgbnej_nO52T_UxQ7GFicHnQA2U')
|
2023-09-19 03:07:21 +00:00
|
|
|
uni.hideTabBar();
|
|
|
|
uni.setStorageSync("tabBar", tabBar);
|
2023-09-19 03:05:39 +00:00
|
|
|
},
|
|
|
|
onShow: function() {
|
|
|
|
console.log("App Show");
|
|
|
|
},
|
|
|
|
onHide: function() {
|
|
|
|
console.log("App Hide");
|
|
|
|
}
|
|
|
|
};
|
2023-09-18 07:35:21 +00:00
|
|
|
</script>
|
|
|
|
|
2023-09-19 03:05:39 +00:00
|
|
|
<style lang="scss">
|
2023-09-20 07:34:58 +00:00
|
|
|
/*每个页面公共css */
|
|
|
|
@import "./tm-vuetify/mian.min.css";
|
|
|
|
@import "./tm-vuetify/scss/theme.css";
|
2023-09-19 03:05:39 +00:00
|
|
|
@import "uview-ui/index.scss";
|
2023-09-25 12:03:52 +00:00
|
|
|
.u-upload__wrap{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2023-09-27 02:04:50 +00:00
|
|
|
.u-tabbar__content{
|
|
|
|
height: 166rpx;
|
|
|
|
}
|
2023-09-26 02:13:55 +00:00
|
|
|
.tm-poup-wk{
|
|
|
|
height: initial!important;
|
|
|
|
}
|
2023-09-25 11:53:59 +00:00
|
|
|
.u-upload__button{
|
|
|
|
width: 404rpx!important;
|
|
|
|
height: 306rpx!important;
|
|
|
|
}
|
2023-09-26 03:41:01 +00:00
|
|
|
.u-transition{
|
|
|
|
z-index: 999!important;
|
|
|
|
}
|
2023-09-26 03:13:01 +00:00
|
|
|
|
2023-09-18 07:35:21 +00:00
|
|
|
</style>
|