mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
23 lines
387 B
JavaScript
23 lines
387 B
JavaScript
import Page from '../../common/page';
|
|
import Notify from '../../dist/notify/notify';
|
|
|
|
Page({
|
|
showNotify() {
|
|
Notify('通知内容');
|
|
},
|
|
|
|
showNotify2() {
|
|
Notify({
|
|
duration: 1000,
|
|
text: '通知内容',
|
|
selector: '#custom-selector',
|
|
backgroundColor: '#1989fa',
|
|
safeAreaInsetTop: true
|
|
});
|
|
},
|
|
|
|
onClickLeft() {
|
|
wx.navigateBack();
|
|
}
|
|
});
|