From a265766e73ffe7735975a5425887cd10e04cd0e1 Mon Sep 17 00:00:00 2001 From: weishuodan Date: Thu, 4 Jan 2024 21:01:58 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E5=BC=B9=E7=AA=97icon=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/dialog/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/dialog/index.js b/components/dialog/index.js index aa530151..f0769bcb 100644 --- a/components/dialog/index.js +++ b/components/dialog/index.js @@ -174,6 +174,7 @@ Dialog.alert = ({ */ Dialog.succeed = props => { props.icon = 'success-color' + props.iconSvg = true return Dialog.confirm(props) } @@ -185,6 +186,7 @@ Dialog.succeed = props => { */ Dialog.failed = props => { props.icon = 'warn-color' + props.iconSvg = true return Dialog.confirm(props) } From 87e0519e5f3e6acc73b1040413c57554c30f2635 Mon Sep 17 00:00:00 2001 From: weishuodan Date: Fri, 5 Jan 2024 14:51:07 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat:=E8=BD=A6=E7=89=8C=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/license-plate/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/license-plate/index.vue b/components/license-plate/index.vue index 868deaa5..e29ad8a8 100644 --- a/components/license-plate/index.vue +++ b/components/license-plate/index.vue @@ -505,7 +505,9 @@ export default { .md-license-plate-input-container{ &.popUp{ background: #fff; - padding: 20px 40px 40px; + padding: 20px 40px 0px; + padding-bottom: constant(safe-area-inset-bottom); + padding-bottom: env(safe-area-inset-bottom); } } }