From 94b38f76899f44e8660b189b15fa67accc0ba349 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Wed, 27 Mar 2024 11:28:06 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=E6=95=88=E6=9E=9C?= =?UTF-8?q?=EF=BC=8C=E5=BC=B9=E7=AA=97=E9=BB=98=E8=AE=A4=E7=BB=9F=E4=B8=80?= =?UTF-8?q?=E5=85=A8=E5=B1=8F=EF=BC=8C=E5=AE=9E=E7=8E=B0=E6=9B=B4=E5=A5=BD?= =?UTF-8?q?=E7=9A=84=E9=80=82=E9=85=8D=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Modal/src/BasicModal.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/Modal/src/BasicModal.vue b/src/components/Modal/src/BasicModal.vue index d028f3b..3713e4c 100644 --- a/src/components/Modal/src/BasicModal.vue +++ b/src/components/Modal/src/BasicModal.vue @@ -226,6 +226,11 @@ } if (Reflect.has(props, 'defaultFullscreen')) { fullScreenRef.value = !!props.defaultFullscreen; + // update-begin--author:liaozhiyang---date:20240326---for:【QQYUN-8643】弹窗移动端弹窗统一全屏 + if (getIsMobile.value) { + fullScreenRef.value = true + } + // update-end--author:liaozhiyang---date:20240326---for:【QQYUN-8643】弹窗移动端弹窗统一全屏 } }