fix(Notify): incorrect safe area (#2044)

This commit is contained in:
neverland 2019-09-18 15:50:45 +08:00 committed by GitHub
parent 804adb0334
commit 4601f77c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 5 additions and 20 deletions

View File

@ -27,9 +27,5 @@ Page({
type, type,
message: '通知内容' message: '通知内容'
}); });
},
onClickLeft() {
wx.navigateBack();
} }
}); });

View File

@ -1,4 +1,3 @@
{ {
"navigationBarTitleText": "Notify 消息通知", "navigationBarTitleText": "Notify 消息通知"
"navigationStyle": "custom"
} }

View File

@ -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>

View File

@ -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;
} }

View File

@ -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

View File

@ -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>

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: () => {}