129 lines
2.3 KiB
Vue
129 lines
2.3 KiB
Vue
|
<script>
|
||
|
// #ifdef APP-PLUS
|
||
|
import { initEvent } from "@/utils/uniMPevent.js"
|
||
|
import { plus } from "./uni_modules/uview-ui/libs/function/digit";
|
||
|
// #endif
|
||
|
export default {
|
||
|
onLaunch: function() {
|
||
|
console.log('App Launch')
|
||
|
// #ifdef APP-PLUS
|
||
|
initEvent();
|
||
|
// #endif
|
||
|
if(this.$store.state.app.token){
|
||
|
plus.navigator.closeSplashscreen();
|
||
|
}else {
|
||
|
uni.reLaunch({
|
||
|
url:'/pages/login/login',
|
||
|
success() {
|
||
|
plus.navigator.closeSplashscreen();
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
onShow: function() {
|
||
|
console.log('App Show')
|
||
|
},
|
||
|
onHide: function() {
|
||
|
console.log('App Hide')
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
/* #ifndef APP-PLUS-NVUE || APP-NVUE */
|
||
|
@import "@/plugin/animate/animate.min.css";
|
||
|
@import 'static/css/base.css';
|
||
|
@import 'static/iconfont/iconfont.css';
|
||
|
@import 'static/iconfont/iconlihai.css';
|
||
|
@import 'static/iconfont/icontan.css';
|
||
|
@import 'static/iconfont/demo.css';
|
||
|
@import 'static/css/style.scss';
|
||
|
|
||
|
|
||
|
view {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.custom_style {
|
||
|
color: #fff;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 24rpx;
|
||
|
|
||
|
&_icon {
|
||
|
background-image: url('static/tabbar_icon/d.png');
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: cover;
|
||
|
font-size: 80rpx;
|
||
|
width: 100rpx;
|
||
|
height: 100rpx;
|
||
|
border-radius: 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
margin-top: -50rpx;
|
||
|
// box-shadow: 0px 5px 10px 1px rgba(32, 161, 98, 0.3);
|
||
|
}
|
||
|
|
||
|
.custom_style-txt {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
margin-top: 5rpx;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.bg-color-red {
|
||
|
background-color: #e93323 !important;
|
||
|
}
|
||
|
|
||
|
.syspadding {
|
||
|
padding-top: var(--status-bar-height);
|
||
|
}
|
||
|
|
||
|
.flex {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.uni-scroll-view::-webkit-scrollbar {
|
||
|
/* 隐藏滚动条,但依旧具备可以滚动的功能 */
|
||
|
display: none
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar {
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
color: transparent;
|
||
|
}
|
||
|
|
||
|
::-moz-scrollbar {
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
color: transparent;
|
||
|
}
|
||
|
|
||
|
.empty-txt {
|
||
|
line-height: 100rpx;
|
||
|
font-size: 22rpx;
|
||
|
color: #999;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.product-con .conter img {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.open-location {
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
uni-tabbar {
|
||
|
bottom: 0;
|
||
|
}
|
||
|
|
||
|
/*#endif*/
|
||
|
</style>
|