feat: 推荐帖子 调整

This commit is contained in:
2025-08-04 21:41:58 +08:00
parent c40c64c92f
commit 800052a900
5 changed files with 25 additions and 71 deletions

View File

@@ -1,7 +1,7 @@
<template>
<view class="container">
<view v-for="item in themeDTOList" :key="item.title">
<DiscoveryCradContentList :recommendTheme="item" />
<RecommendPostsList :recommendTheme="item" />
</view>
</view>
</template>
@@ -10,8 +10,8 @@
import { ref, nextTick } from 'vue'
import { onMounted } from 'vue'
import { discoveryCradComponent } from '@/request/api/MainPageDataApi'
import RecommendPostsList from '../recommend/RecommendPostsList.vue'
import { SCROLL_TO_BOTTOM } from '@/constant/constant'
import DiscoveryCradContentList from './DiscoveryCradContentList.vue'
const themeDTOList = ref([])