瑶都万能墙
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.

79 lines
1.4 KiB

7 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 20">
  10. <view class=" profilepicture">
  11. </view>
  12. <view class="name">
  13. <view class="namea">
  14. 王德发
  15. </view>
  16. <view class="nameb">
  17. 感悟哲理积极面对人生传递正能量
  18. </view>
  19. </view>
  20. <view class="Dot">
  21. <uv-icon name="more-dot-fill"></uv-icon>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. import mixinsList from '@/mixins/list.js'
  29. export default {
  30. mixins: [mixinsList],
  31. data() {
  32. return {
  33. }
  34. },
  35. methods: {
  36. }
  37. }
  38. </script>
  39. <style scoped lang="scss">
  40. .fansList {
  41. margin: 20rpx 10rpx;
  42. background-color: white;
  43. .fanst{
  44. margin: 20rpx 0rpx;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. justify-content: space-around;
  49. .profilepicture {
  50. width: 100rpx;
  51. height: 100rpx;
  52. background-color: greenyellow;
  53. border-radius: 50%;
  54. }
  55. .name {
  56. letter-spacing: 2rpx;
  57. font-size: 25rpx;
  58. .namea {
  59. font-weight: bold;
  60. }
  61. .nameb {
  62. color: rgba(0, 0, 0, 0.5);
  63. }
  64. }
  65. }
  66. }
  67. </style>