diff --git a/example/pages/notify/index.js b/example/pages/notify/index.js
index cf55e1f8..daf02e84 100644
--- a/example/pages/notify/index.js
+++ b/example/pages/notify/index.js
@@ -27,9 +27,5 @@ Page({
type,
message: '通知内容'
});
- },
-
- onClickLeft() {
- wx.navigateBack();
}
});
diff --git a/example/pages/notify/index.json b/example/pages/notify/index.json
index 531b376c..a0b1d0dc 100644
--- a/example/pages/notify/index.json
+++ b/example/pages/notify/index.json
@@ -1,4 +1,3 @@
{
- "navigationBarTitleText": "Notify 消息通知",
- "navigationStyle": "custom"
+ "navigationBarTitleText": "Notify 消息通知"
}
diff --git a/example/pages/notify/index.wxml b/example/pages/notify/index.wxml
index f01a9bcf..bac89cbf 100644
--- a/example/pages/notify/index.wxml
+++ b/example/pages/notify/index.wxml
@@ -1,10 +1,3 @@
-
-
基础用法
diff --git a/packages/notify/index.less b/packages/notify/index.less
index fee4b844..37f56885 100644
--- a/packages/notify/index.less
+++ b/packages/notify/index.less
@@ -11,10 +11,6 @@
text-align: center;
word-break: break-all;
- &__safe-top {
- height: @nav-bar-height;
- }
-
&--primary {
background-color: @notify-primary-background-color;
}
diff --git a/packages/notify/index.ts b/packages/notify/index.ts
index 64a2e038..8f4e11a8 100644
--- a/packages/notify/index.ts
+++ b/packages/notify/index.ts
@@ -8,16 +8,16 @@ VantComponent({
mixins: [safeArea()],
props: {
+ message: String,
+ background: String,
type: {
type: String,
value: 'danger'
},
- message: String,
color: {
type: String,
value: WHITE
},
- background: String,
duration: {
type: Number,
value: 3000
diff --git a/packages/notify/index.wxml b/packages/notify/index.wxml
index 5a44673e..5cd0d15b 100644
--- a/packages/notify/index.wxml
+++ b/packages/notify/index.wxml
@@ -5,7 +5,7 @@
custom-style="background:{{ background }}; color: {{ color }}; z-index: {{ zIndex }};"
>
-
+
{{ message }}
diff --git a/packages/notify/notify.ts b/packages/notify/notify.ts
index 071fa2f8..7aad3f8f 100644
--- a/packages/notify/notify.ts
+++ b/packages/notify/notify.ts
@@ -23,6 +23,7 @@ const defaultOptions = {
duration: 3000,
zIndex: 110,
color: WHITE,
+ safeAreaInsetTop: false,
onClick: () => {},
onOpened: () => {},
onClose: () => {}