|
@ -0,0 +1,80 @@ |
|
|
|
|
|
<template> |
|
|
|
|
|
<view class="page pageList"> |
|
|
|
|
|
<navbar title="粉丝" leftClick @leftClick="$utils.navigateBack" /> |
|
|
|
|
|
|
|
|
|
|
|
<view style="padding: 10rpx 30rpx;"> |
|
|
|
|
|
<uv-search bgColor="#fff" @search="getData" @custom="getData" searchIconSize="30rpx" |
|
|
|
|
|
placeholder="请输入搜索关键字..." v-model="queryParams.title"></uv-search> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="fansList"> |
|
|
|
|
|
<view class="fanst" v-for="(item,index) in 20"> |
|
|
|
|
|
<view class=" profilepicture"> |
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="name"> |
|
|
|
|
|
<view class="namea"> |
|
|
|
|
|
王德发 |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="nameb"> |
|
|
|
|
|
感悟哲理,积极面对人生,传递正能量。 |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="Dot"> |
|
|
|
|
|
<uv-icon name="more-dot-fill"></uv-icon> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
</template> |
|
|
|
|
|
<script> |
|
|
|
|
|
import mixinsList from '@/mixins/list.js' |
|
|
|
|
|
export default { |
|
|
|
|
|
mixins: [mixinsList], |
|
|
|
|
|
data() { |
|
|
|
|
|
return { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
|
.fansList { |
|
|
|
|
|
margin: 20rpx 10rpx; |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
.fanst{ |
|
|
|
|
|
margin: 20rpx 0rpx; |
|
|
|
|
|
display: flex; |
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
justify-content: space-around; |
|
|
|
|
|
.profilepicture { |
|
|
|
|
|
width: 100rpx; |
|
|
|
|
|
height: 100rpx; |
|
|
|
|
|
background-color: greenyellow; |
|
|
|
|
|
border-radius: 50%; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.name { |
|
|
|
|
|
letter-spacing: 2rpx; |
|
|
|
|
|
font-size: 25rpx; |
|
|
|
|
|
|
|
|
|
|
|
.namea { |
|
|
|
|
|
font-weight: bold; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.nameb { |
|
|
|
|
|
color: rgba(0, 0, 0, 0.5); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
</style> |