BUG 28453

This commit is contained in:
aixianling
2022-03-22 22:00:28 +08:00
parent 3ea9d7e23e
commit 199a75971f

View File

@@ -21,6 +21,9 @@
</template>
<template #content>
<div v-html="detail.content"/>
<div class="mar-t8">
<el-image v-for="img in detail.images" :key="img.url" :src="img.url" :preview-src-list="[img.url]"/>
</div>
</template>
</ai-card>
<ai-card title="沟通记录">
@@ -92,6 +95,7 @@ export default {
}).then(res => {
if (res?.data) {
this.detail = res.data
this.detail.images = this.detail.images ? JSON.parse(this.detail.images) : []
}
})
},