fix(Notify): fix safeAreaInsetTop not work (#2558)

fix #2540
This commit is contained in:
rex 2019-12-19 16:32:22 +08:00 committed by GitHub
parent 9e310e4c00
commit 1b28680be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 9 deletions

View File

@ -27,5 +27,12 @@ Page({
type, type,
message: '通知内容' message: '通知内容'
}); });
},
showSafe() {
Notify({
message: '通知内容',
safeAreaInsetTop: true
});
} }
}); });

View File

@ -18,4 +18,8 @@
<van-button type="primary" bind:click="showCustomDuration">自定义时长</van-button> <van-button type="primary" bind:click="showCustomDuration">自定义时长</van-button>
</demo-block> </demo-block>
<van-notify id="van-notify" safe-area-inset-top /> <demo-block padding title="插入状态栏高度">
<van-button type="primary" class="demo-margin-right" bind:click="showSafe">插入状态栏高度</van-button>
</demo-block>
<van-notify id="van-notify" />

View File

@ -39,9 +39,9 @@ VantComponent({
const { duration, onOpened } = this.data; const { duration, onOpened } = this.data;
clearTimeout(this.timer); clearTimeout(this.timer);
this.setData({ this.setData({ show: true });
show: true
}, onOpened); wx.nextTick(onOpened);
if (duration > 0 && duration !== Infinity) { if (duration > 0 && duration !== Infinity) {
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
@ -54,9 +54,9 @@ VantComponent({
const { onClose } = this.data; const { onClose } = this.data;
clearTimeout(this.timer); clearTimeout(this.timer);
this.setData({ this.setData({ show: false });
show: false
}, onClose); wx.nextTick(onClose);
}, },
onTap(event: Weapp.Event) { onTap(event: Weapp.Event) {

View File

@ -9,7 +9,10 @@
class="van-notify van-notify--{{ type }}" class="van-notify van-notify--{{ type }}"
style="background:{{ background }};color:{{ color }};" style="background:{{ background }};color:{{ color }};"
> >
<view wx:if="{{ safeAreaInsetTop }}" class="van-notify__safe-area"></view> <view
wx:if="{{ safeAreaInsetTop }}"
style="height: {{ statusBarHeight }}px"
></view>
<text>{{ message }}</text> <text>{{ message }}</text>
</view> </view>
</van-transition> </van-transition>

View File

@ -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: () => {}
@ -47,7 +48,7 @@ export default function Notify(options: NotifyOptions | string) {
delete options.selector; delete options.selector;
if (notify) { if (notify) {
notify.set(options); notify.setData(options);
notify.show(); notify.show();
return notify; return notify;
} }