Merge remote-tracking branch 'origin/feature/v1.2灵机空间-内容上传审核_rxd' into test

This commit is contained in:
rd
2025-08-13 14:12:56 +08:00
2 changed files with 16 additions and 2 deletions

View File

@ -238,7 +238,7 @@ export default {
</div>
{renderMainImg()}
<div class="w-full">
<p class="cts !color-#211F24">{dataSource.value.content}</p>
<p class="cts !color-#211F24 whitespace-pre-line">{dataSource.value.content}</p>
</div>
{/* 仅图片类型显示图片列表 */}

View File

@ -101,6 +101,7 @@ export default {
width="480px"
onClose={onClose}
unmount-on-close
auto-label-width
v-slots={{
footer: () => (
<>
@ -126,7 +127,20 @@ export default {
allClear={false}
/>
</FormItem>
<FormItem label="分享对象" prop="receiver" required>
<FormItem
label="分享对象"
prop="receiver"
v-slots={{
label: () => (
<div class="flex items-center">
<span>分享对象</span>
<a-tooltip content="可填写客户名称、昵称等,非必填" position="top">
<icon-question-circle class="tooltip-icon color-#737478 ml-4px" size="14" />
</a-tooltip>
</div>
),
}}
>
<Input v-model={formData.value.receiver} class="!w-240px" size="large" placeholder="请输入分享对象" />
</FormItem>
</Form>