mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
9e310e4c00
commit
1b28680be1
@ -27,5 +27,12 @@ Page({
|
|||||||
type,
|
type,
|
||||||
message: '通知内容'
|
message: '通知内容'
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
showSafe() {
|
||||||
|
Notify({
|
||||||
|
message: '通知内容',
|
||||||
|
safeAreaInsetTop: true
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -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" />
|
||||||
|
@ -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) {
|
||||||
|
@ -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>
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user