This commit is contained in:
qsh
2025-08-04 17:21:38 +08:00
parent 240224823e
commit c34623287c
2 changed files with 15 additions and 5 deletions

View File

@@ -510,7 +510,7 @@ async function handleChangeProdoce(row) {
})
message.success('修改成功')
// 刷新列表
getTableList()
// getTableList()
} catch {
// 取消后,进行恢复按钮
row.isProduced = !row.isProduced

View File

@@ -121,9 +121,15 @@
</el-col>
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" v-if="!!form.meetingId">
<el-form-item label="会议纪要" prop="meetingSummary" label-width="80px">
<!-- <div v-if="!!isDetail" v-dompurify-html="form.meetingSummary" class="w-full"></div>
<Editor v-else v-model="form.meetingSummary" height="500px" /> -->
<div v-if="!!isDetail" class="w-full">{{ form.meetingSummary }}</div>
<div v-if="!!isDetail" v-dompurify-html="form.meetingSummary" class="w-full"></div>
<Editor
v-else
v-model="form.meetingSummary"
:toolbarConfig="toolbarConfig"
height="500px"
style="width: 100%"
/>
<!-- <div v-if="!!isDetail" class="w-full">{{ form.meetingSummary }}</div>
<el-input
v-else
v-model="form.meetingSummary"
@@ -132,7 +138,7 @@
:maxlength="-1"
:show-word-limit="false"
:autosize="{ minRows: 20 }"
/>
/> -->
</el-form-item>
</el-col>
</el-row>
@@ -152,6 +158,10 @@ const route = useRoute()
const message = useMessage()
const tagsViewStore = useTagsViewStore()
const toolbarConfig = {
toolbarKeys: []
}
const defaultProps = {
value: 'nodeId',
label: 'nodeName',