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

34 lines
777 B

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 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>
  9. <FansList :list="list" showDot />
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import mixinsList from '@/mixins/list.js'
  15. import FansList from '@/components/list/fansList.vue'
  16. export default {
  17. mixins: [mixinsList],
  18. components: { FansList },
  19. data() {
  20. return {
  21. mixinsListApi : 'getFansList',
  22. }
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style scoped lang="scss">
  29. /* 列表样式由 FansList 组件内部维护 */
  30. </style>