mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Notify): incorrect safe area (#2044)
This commit is contained in:
parent
804adb0334
commit
4601f77c5c
@ -27,9 +27,5 @@ Page({
|
|||||||
type,
|
type,
|
||||||
message: '通知内容'
|
message: '通知内容'
|
||||||
});
|
});
|
||||||
},
|
|
||||||
|
|
||||||
onClickLeft() {
|
|
||||||
wx.navigateBack();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{
|
{
|
||||||
"navigationBarTitleText": "Notify 消息通知",
|
"navigationBarTitleText": "Notify 消息通知"
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,3 @@
|
|||||||
<van-nav-bar
|
|
||||||
title="Notify 消息通知"
|
|
||||||
left-text="返回"
|
|
||||||
left-arrow
|
|
||||||
bind:click-left="onClickLeft"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<demo-block padding title="基础用法">
|
<demo-block padding title="基础用法">
|
||||||
<van-button type="danger" bind:click="showNotify">基础用法</van-button>
|
<van-button type="danger" bind:click="showNotify">基础用法</van-button>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
@ -11,10 +11,6 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
|
||||||
&__safe-top {
|
|
||||||
height: @nav-bar-height;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--primary {
|
&--primary {
|
||||||
background-color: @notify-primary-background-color;
|
background-color: @notify-primary-background-color;
|
||||||
}
|
}
|
||||||
|
@ -8,16 +8,16 @@ VantComponent({
|
|||||||
mixins: [safeArea()],
|
mixins: [safeArea()],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
message: String,
|
||||||
|
background: String,
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'danger'
|
value: 'danger'
|
||||||
},
|
},
|
||||||
message: String,
|
|
||||||
color: {
|
color: {
|
||||||
type: String,
|
type: String,
|
||||||
value: WHITE
|
value: WHITE
|
||||||
},
|
},
|
||||||
background: String,
|
|
||||||
duration: {
|
duration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 3000
|
value: 3000
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
custom-style="background:{{ background }}; color: {{ color }}; z-index: {{ zIndex }};"
|
custom-style="background:{{ background }}; color: {{ color }}; z-index: {{ zIndex }};"
|
||||||
>
|
>
|
||||||
<view bind:tap="onTap">
|
<view bind:tap="onTap">
|
||||||
<view wx:if="{{ safeAreaInsetTop }}" class="van-notify__safe-top" style="padding-top: {{ statusBarHeight }}px"></view>
|
<view wx:if="{{ safeAreaInsetTop }}" style="padding-top: {{ statusBarHeight }}px"></view>
|
||||||
{{ message }}
|
{{ message }}
|
||||||
</view>
|
</view>
|
||||||
</van-transition>
|
</van-transition>
|
||||||
|
@ -23,6 +23,7 @@ const defaultOptions = {
|
|||||||
duration: 3000,
|
duration: 3000,
|
||||||
zIndex: 110,
|
zIndex: 110,
|
||||||
color: WHITE,
|
color: WHITE,
|
||||||
|
safeAreaInsetTop: false,
|
||||||
onClick: () => {},
|
onClick: () => {},
|
||||||
onOpened: () => {},
|
onOpened: () => {},
|
||||||
onClose: () => {}
|
onClose: () => {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user