From d7fd009672cd942cd92fbffdcb43f77de0592bcb Mon Sep 17 00:00:00 2001 From: dengbf Date: Thu, 17 Apr 2025 19:09:57 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E7=BC=96=E8=BE=91-=E5=8D=95=E5=85=83=E6=A0=BC=E5=92=8C?= =?UTF-8?q?=E5=BA=8F=E5=8F=B7=E5=88=97=E8=A1=A8=E8=A1=8C=E9=AB=98=E9=94=99?= =?UTF-8?q?=E4=BD=8D=20=20-=20[=E5=85=B3=E8=81=94]=20#[1401565506666496]?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E7=BC=96=E8=BE=91-=E5=8D=95=E5=85=83?= =?UTF-8?q?=E6=A0=BC=E5=92=8C=E5=BA=8F=E5=8F=B7=E5=88=97=E8=A1=A8=E8=A1=8C?= =?UTF-8?q?=E9=AB=98=E9=94=99=E4=BD=8D=20http://192.168.0.96:8090/demo/rdm?= =?UTF-8?q?.html#/bug-detail/939050947543040/939050947543057/1401565506666?= =?UTF-8?q?496?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/cmdb/form/component/formcientitymodify/index.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/pages/cmdb/form/component/formcientitymodify/index.vue b/src/views/pages/cmdb/form/component/formcientitymodify/index.vue index e990fd78..f5474629 100644 --- a/src/views/pages/cmdb/form/component/formcientitymodify/index.vue +++ b/src/views/pages/cmdb/form/component/formcientitymodify/index.vue @@ -215,6 +215,12 @@ export default { this.$api.cmdb.ci.getCiList({ idList: this.config.ciIdList }).then(res => { if (res.Status == 'OK') { this.ciList = res.Return || []; + if (['edit', 'editSubform'].includes(this.mode)) { + // 编辑模式下更新表单高度 + this.$nextTick(() => { + this.$emit('resize'); + }); + } } }); }, -- Gitee