feat: 聊天的结构调整

This commit is contained in:
2025-08-02 16:55:23 +08:00
parent ec3413833d
commit 299d755493
8 changed files with 45 additions and 22 deletions

View File

@@ -0,0 +1,42 @@
<template>
<view class="container">
<view v-for="item in themeDTOList" :key="item.title">
<DiscoveryCradContentList :recommendTheme="item" />
</view>
</view>
</template>
<script setup>
import { ref, nextTick } from 'vue'
import { onMounted } from 'vue'
import { discoveryCradComponent } from '@/request/api/MainPageDataApi'
import { SCROLL_TO_BOTTOM } from '@/constant/constant'
import DiscoveryCradContentList from './DiscoveryCradContentList.vue'
const themeDTOList = ref([])
const loadDiscoveryCradComponent = async () => {
const res = await discoveryCradComponent()
if(res.code === 0 && res.data) {
themeDTOList.value.push(...res.data.themeDTOList)
nextTick(() => {
uni.$emit(SCROLL_TO_BOTTOM, true)
});
}
}
onMounted(() => {
console.log('=============')
loadDiscoveryCradComponent()
})
</script>
<style scoped lang="scss">
.container {
width: 100%;
flex: 1;
margin-bottom: 12px;
}
</style>