50 lines
935 B
Vue
50 lines
935 B
Vue
|
|
<script>
|
||
|
|
import { useUserStore } from './stores/user'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
onLaunch() {
|
||
|
|
const userStore = useUserStore()
|
||
|
|
userStore.loadFromStorage()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
@import url("common/style/common-style.scss");
|
||
|
|
wx-swiper .wx-swiper-dot {
|
||
|
|
position: relative;
|
||
|
|
right: -260rpx;
|
||
|
|
bottom: 110rpx;
|
||
|
|
}
|
||
|
|
/* tabBar */
|
||
|
|
.customtabbar {
|
||
|
|
display: flex;
|
||
|
|
justifycontent: spacearound;
|
||
|
|
alignitems: center;
|
||
|
|
height: 50px;
|
||
|
|
backgroundcolor: #fff;
|
||
|
|
bordertop: 1px solid #ccc;
|
||
|
|
}
|
||
|
|
.customtabbar .item {
|
||
|
|
display: flex;
|
||
|
|
flexdirection: column;
|
||
|
|
alignitems: center;
|
||
|
|
}
|
||
|
|
.customtabbar .item span {
|
||
|
|
fontsize: 12px;
|
||
|
|
color: #999;
|
||
|
|
}
|
||
|
|
.customtabbar .item i {
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
}
|
||
|
|
// .segmented-control__item--text{
|
||
|
|
// color: #fff !important;
|
||
|
|
// border-top: none;
|
||
|
|
// border-right: none;
|
||
|
|
// border-bottom: none;
|
||
|
|
// border-left: none;
|
||
|
|
// }
|
||
|
|
</style>
|