瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
1.7 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. <template>
  2. <view class="page pageList">
  3. <navbar title="粉丝" leftClick @leftClick="$utils.navigateBack" />
  4. <view style="padding: 10rpx 30rpx;">
  5. <uv-search bgColor="#fff" @search="getData" @custom="getData" searchIconSize="30rpx"
  6. placeholder="请输入搜索关键字..." v-model="queryParams.title"></uv-search>
  7. </view>
  8. <view class="fansList">
  9. <view class="fanst" v-for="(item,index) in list">
  10. <view class=" profilepicture">
  11. <image :src="item.headImage" mode="aspectFill"></image>
  12. </view>
  13. <view class="name">
  14. <view class="namea">
  15. {{ item.nickName }}
  16. </view>
  17. <view class="nameb">
  18. <!-- 感悟哲理积极面对人生传递正能量 -->
  19. {{ item.createTime }}
  20. </view>
  21. </view>
  22. <view class="Dot">
  23. <uv-icon name="more-dot-fill"></uv-icon>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import mixinsList from '@/mixins/list.js'
  31. export default {
  32. mixins: [mixinsList],
  33. data() {
  34. return {
  35. mixinsListApi : 'getFansList',
  36. }
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .fansList {
  44. margin: 20rpx 10rpx;
  45. background-color: white;
  46. .fanst{
  47. margin: 20rpx 0rpx;
  48. display: flex;
  49. align-items: center;
  50. padding: 20rpx;
  51. .profilepicture {
  52. width: 100rpx;
  53. height: 100rpx;
  54. border-radius: 50%;
  55. image{
  56. width: 100rpx;
  57. height: 100rpx;
  58. border-radius: 50%;
  59. }
  60. }
  61. .name {
  62. letter-spacing: 2rpx;
  63. font-size: 25rpx;
  64. margin-left: 20rpx;
  65. .namea {
  66. font-weight: bold;
  67. }
  68. .nameb {
  69. color: rgba(0, 0, 0, 0.5);
  70. }
  71. }
  72. .Dot{
  73. margin-left: auto;
  74. }
  75. }
  76. }
  77. </style>