2019-08-28 11:47:12 +08:00

31 lines
537 B
JavaScript

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();
}
});