import Page from '../../common/page'; import Notify from '../../dist/notify/notify'; Page({ showNotify() { Notify('通知内容'); }, showCustomColor() { Notify({ message: '通知内容', selector: '#custom-selector', background: '#1989fa', safeAreaInsetTop: true }); }, showCustomDuration() { Notify({ duration: 1000, message: '通知内容', selector: '#custom-selector', safeAreaInsetTop: true }); }, onClickLeft() { wx.navigateBack(); } });