sc
This commit is contained in:
@@ -510,7 +510,7 @@ async function handleChangeProdoce(row) {
|
|||||||
})
|
})
|
||||||
message.success('修改成功')
|
message.success('修改成功')
|
||||||
// 刷新列表
|
// 刷新列表
|
||||||
getTableList()
|
// getTableList()
|
||||||
} catch {
|
} catch {
|
||||||
// 取消后,进行恢复按钮
|
// 取消后,进行恢复按钮
|
||||||
row.isProduced = !row.isProduced
|
row.isProduced = !row.isProduced
|
||||||
|
|||||||
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user