From adae3570018f901f7b650b138d26ba5b7c6e85c9 Mon Sep 17 00:00:00 2001 From: dengbf Date: Wed, 10 Sep 2025 15:44:00 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E5=85=B3=E8=81=94]=20#[1502961027481600]?= =?UTF-8?q?=E8=B5=84=E4=BA=A7=E6=B8=85=E5=8D=95-=E9=AB=98=E7=BA=A7?= =?UTF-8?q?=E6=90=9C=E7=B4=A0=E6=A8=A1=E5=BC=8F=E4=B8=8B=EF=BC=8C=E7=BB=84?= =?UTF-8?q?=E5=90=88=E6=90=9C=E7=B4=A2=E4=BC=9A=E5=85=88=E8=BE=83=E9=95=BF?= =?UTF-8?q?=EF=BC=8C=E5=AF=BC=E8=87=B4=E6=90=9C=E7=B4=A2=E6=A1=86=E6=92=91?= =?UTF-8?q?=E5=87=BA=E8=BE=B9=E7=95=8C=20http://192.168.0.96:8090/demo/rdm?= =?UTF-8?q?.html#/bug-detail/939050947543040/939050947543057/1502961027481?= =?UTF-8?q?600?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/resources/components/TsContain/TsContain.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/components/TsContain/TsContain.vue b/src/resources/components/TsContain/TsContain.vue index 6d62e22e..3c2ba4d8 100644 --- a/src/resources/components/TsContain/TsContain.vue +++ b/src/resources/components/TsContain/TsContain.vue @@ -235,7 +235,7 @@ export default { // 提取重复的宽度计算逻辑 const getDefaultWidth = (width, defaultValue) => width || defaultValue; const threeEqualWidths = `${getDefaultWidth(this.topLeftWidth, '33.33%')} ${getDefaultWidth(this.topCenterWidth, '33.33%')} ${getDefaultWidth(this.topRightWidth, '33.33%')}`; - const twoEqualWidths = `${getDefaultWidth(this.topLeftWidth, '50%')} 0px ${getDefaultWidth(this.topRightWidth, '50%')}`; + const twoEqualWidths = `minmax(0, ${getDefaultWidth(this.topLeftWidth, '50%')}) 0px minmax(0, ${getDefaultWidth(this.topRightWidth, '50%')})`; if (hasLeft && hasCenter && hasRight) { //左中右 -- Gitee