From 9506ddba3976a9053a9dd28c8c572e5414747462 Mon Sep 17 00:00:00 2001 From: yaojn Date: Mon, 6 Nov 2023 18:13:18 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E5=B7=A5=E5=8D=95?= =?UTF-8?q?=E5=A4=84=E7=90=86-=E7=BC=96=E8=BE=91=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E4=B8=8B=EF=BC=8C=E5=8F=AA=E8=AF=BB=E7=9A=84=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E8=A1=8C=E9=97=B4=E8=B7=9D=E5=BE=88=E5=AE=BD?= =?UTF-8?q?=20=20=20-=20[=E5=85=B3=E8=81=94]#[1018849275641856]=E5=B7=A5?= =?UTF-8?q?=E5=8D=95=E5=A4=84=E7=90=86-=E7=BC=96=E8=BE=91=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F=E4=B8=8B=EF=BC=8C=E5=8F=AA=E8=AF=BB=E7=9A=84=E8=A1=A8?= =?UTF-8?q?=E5=8D=95=E7=BB=84=E4=BB=B6=E8=A1=8C=E9=97=B4=E8=B7=9D=E5=BE=88?= =?UTF-8?q?=E5=AE=BD=20http://192.168.0.96:8090/demo/rdm.html#/bug-detail/?= =?UTF-8?q?939050947543040/939050947543057/1018849275641856?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/resources/plugins/TsSheet/TsSheet.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/plugins/TsSheet/TsSheet.vue b/src/resources/plugins/TsSheet/TsSheet.vue index 72db0fab..f2094989 100644 --- a/src/resources/plugins/TsSheet/TsSheet.vue +++ b/src/resources/plugins/TsSheet/TsSheet.vue @@ -788,7 +788,7 @@ export default { this.$nextTick(() => { if (row != null) { - const lefter = this.config.lefterList[row]; + const lefter = this.$utils.deepClone(this.config.lefterList[row]); // 深拷贝,解决组件行间距很宽的问题 const lrect = this.$refs['lefter' + row] && this.$refs['lefter' + row][0] ? this.$refs['lefter' + row][0].getBoundingClientRect() : {}; if (lrect.height > lefter.height) { lefter.height = Math.max(lrect.height, this.minHeight); -- Gitee