first commit
This commit is contained in:
49
App.vue
Normal file
49
App.vue
Normal file
@@ -0,0 +1,49 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user