个人中心

This commit is contained in:
2020-06-12 18:05:39 +08:00
parent 006a3a5459
commit ee119b3be5
10 changed files with 407 additions and 53 deletions

44
pages/user/fans.vue Normal file
View File

@@ -0,0 +1,44 @@
<template>
<view class="fans">
<view class="lately">
<view class="title">最新</view>
<view class="items">
<view v-for="(item, index) in 3" :key="index">
<FansItem></FansItem>
</view>
</view>
</view>
<view class="before">
<view class="title">早前</view>
<view class="items">
<view v-for="(item, index) in 13" :key="index">
<FansItem></FansItem>
</view>
</view>
</view>
</view>
</template>
<script>
import FansItem from '@/components/fans-item/index'
export default {
data() {
return {}
},
components: {
FansItem
}
};
</script>
<style lang="scss" scoped>
.fans {
min-height: calc(100vh - var(--window-top));
background: #ececec;
.lately, .before {
.title {
font-size: 26rpx;
color:rgba(101,101,101,1);
padding: 20rpx 30rpx;
}
}
}
</style>