From fa5a303c08c593a6c20ef9e55919963bbd0bf466 Mon Sep 17 00:00:00 2001 From: helloDy <1615073571@qq.com> Date: Wed, 29 Nov 2023 16:53:51 +0800 Subject: [PATCH] bug ui --- src/components/DialogForm/index.vue | 5 +- src/components/Editor/index.vue | 12 +- .../AlarmGroup/components/BasicDrawer.vue | 10 +- .../BindGroup/components/BasicDrawer.vue | 6 +- .../equipment/base/config/BindGroup/index.vue | 2 +- .../config/DataCollection/TableConfig.vue | 33 +- .../DataCollection/components/BasicDrawer.vue | 8 +- .../base/inspection/Record/addRecord.vue | 4 +- .../base/inspection/Record/index.vue | 3 +- .../equipment/base/maintain/Monitor/index.vue | 31 +- .../equipment/base/maintain/Record/index.vue | 69 ++-- .../base/repair/CustomDialogForm.vue | 357 +++++++++--------- src/views/equipment/base/repair/index.vue | 40 +- 13 files changed, 306 insertions(+), 274 deletions(-) diff --git a/src/components/DialogForm/index.vue b/src/components/DialogForm/index.vue index 0c4fcff1..c780edba 100644 --- a/src/components/DialogForm/index.vue +++ b/src/components/DialogForm/index.vue @@ -142,6 +142,9 @@ function findMaxLabelWidth(rows) { if (!opt.label) return 0; if (opt.label.length > max) { max = opt.label.length; + if (opt.label.includes('(')) { + max = max - 3 + } } }); }); @@ -239,7 +242,7 @@ export default { size: { type: String, default: '', - }, + } }, data() { return { diff --git a/src/components/Editor/index.vue b/src/components/Editor/index.vue index 1b0d68c1..046e334a 100644 --- a/src/components/Editor/index.vue +++ b/src/components/Editor/index.vue @@ -83,7 +83,7 @@ export default { ], }, placeholder: '请输入内容', - readOnly: true, + // readOnly: false, }, }; }, @@ -123,11 +123,13 @@ export default { const editor = this.$refs.editor; this.Quill = new Quill(editor, this.options); // 取消自动聚焦 start + this.Quill?.enable(false); this.$nextTick(() => { + this.Quill?.enable(true); this.Quill?.blur(); - if (!this.readOnly) { - this.Quill?.enable(); - } + // if (!this.readOnly) { + // this.Quill?.enable(); + // } }); // 如果设置了上传地址则自定义图片上传事件 if (this.type === 'url') { @@ -196,7 +198,7 @@ export default { }; -