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> </div>
{renderMainImg()} {renderMainImg()}
<div class="w-full"> <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> </div>
{/* 仅图片类型显示图片列表 */} {/* 仅图片类型显示图片列表 */}

View File

@ -101,6 +101,7 @@ export default {
width="480px" width="480px"
onClose={onClose} onClose={onClose}
unmount-on-close unmount-on-close
auto-label-width
v-slots={{ v-slots={{
footer: () => ( footer: () => (
<> <>
@ -126,7 +127,20 @@ export default {
allClear={false} allClear={false}
/> />
</FormItem> </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="请输入分享对象" /> <Input v-model={formData.value.receiver} class="!w-240px" size="large" placeholder="请输入分享对象" />
</FormItem> </FormItem>
</Form> </Form>