UnisKB/ui/src/components/ai-chat/component/question-content/index.vue

85 lines
2.7 KiB
Vue
Raw Normal View History

2024-11-13 02:37:16 +00:00
<template>
<!-- 问题内容 -->
<div class="item-content mb-16 lighter">
<div class="avatar">
<el-image
v-if="application.user_avatar"
:src="application.user_avatar"
alt=""
fit="cover"
2024-11-13 03:37:36 +00:00
style="width: 32px; height: 32px; display: block"
2024-11-13 02:37:16 +00:00
/>
<AppAvatar v-else>
2024-11-13 03:37:36 +00:00
<img src="@/assets/user-icon.svg" style="width: 50%" alt="" />
2024-11-13 02:37:16 +00:00
</AppAvatar>
</div>
<div class="content">
<div class="text break-all pre-wrap">
<div class="mb-8" v-if="document_list.length">
<el-space wrap>
<template v-for="(item, index) in document_list" :key="index">
<el-card shadow="never" style="--el-card-padding: 8px" class="file cursor">
<div class="flex align-center">
<img :src="getImgUrl(item && item?.name)" alt="" width="24" />
<div class="ml-4 ellipsis" :title="item && item?.name">
{{ item && item?.name }}
</div>
</div>
</el-card>
</template>
</el-space>
</div>
<div class="mb-8" v-if="image_list.length">
<el-space wrap>
<template v-for="(item, index) in image_list" :key="index">
<div class="file cursor border border-r-4" v-if="item.url">
<el-image
:src="item.url"
:zoom-rate="1.2"
:max-scale="7"
:min-scale="0.2"
:preview-src-list="getAttrsArray(image_list, 'url')"
alt=""
fit="cover"
style="width: 170px; height: 170px; display: block"
class="border-r-4"
/>
</div>
</template>
</el-space>
</div>
2024-11-13 02:37:16 +00:00
{{ chatRecord.problem_text }}
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { type chatType } from '@/api/type/application'
import { getImgUrl, getAttrsArray } from '@/utils/utils'
import { onMounted, computed } from 'vue'
const props = defineProps<{
2024-11-13 02:37:16 +00:00
application: any
chatRecord: chatType
}>()
const document_list = computed(() => {
return []
})
const image_list = computed(() => {
if (props.chatRecord.execution_details?.length > 0) {
return props.chatRecord.execution_details[0].image_list
} else {
return []
}
})
onMounted(() => {
console.log(props.chatRecord.execution_details)
if (props.chatRecord.execution_details?.length > 0) {
2024-11-15 06:33:47 +00:00
props.chatRecord.execution_details[0].image_list?.forEach((image: any) => {
console.log('image', image.name, image.url)
})
}
})
2024-11-13 02:37:16 +00:00
</script>
<style lang="scss" scoped></style>