Refactor(首页):改版重构-界面完成

This commit is contained in:
lifizer
2024-07-30 18:14:59 +08:00
parent b264e04e8f
commit 37fa7fab05
7 changed files with 1682 additions and 884 deletions
+9 -1
View File
@@ -1,5 +1,5 @@
<template>
<view class="user user-page">
<view class="user user-page tabbar-page">
<view
v-if="$store.getters.token || userInfo.uid"
class="acea-row row-column"
@@ -239,10 +239,12 @@
</view>
</view>
</uni-popup>
<xdd-tabbar :curr-index="3" />
</view>
</template>
<script>
import XddTabbar from '@/components/xdd-tabbar'
import {mapGetters, mapMutations} from "vuex"
import {
getSpreadImg,
@@ -256,6 +258,9 @@ import cookie from "@/utils/store/cookie"
import { pageListenMixins } from '@/mixins/pageListenMixins'
export default {
name: 'UserPage',
components: {
XddTabbar
},
mixins: [pageListenMixins],
data() {
return {
@@ -735,4 +740,7 @@ export default {
height: 52rpx;
}
}
.tabbar-page {
padding: 0 0 180rpx 0;
}
</style>