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