qsh 4 days ago
parent 240224823e
commit c34623287c
  1. 2
      src/views/Clue/Order/Comp/MallOrderList.vue
  2. 18
      src/views/OKR/Meeting/MeetingInfo.vue

@ -510,7 +510,7 @@ async function handleChangeProdoce(row) {
})
message.success('修改成功')
//
getTableList()
// getTableList()
} catch {
//
row.isProduced = !row.isProduced

@ -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',

Loading…
Cancel
Save