mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
28 lines
435 B
JavaScript
28 lines
435 B
JavaScript
import Page from '../../common/page';
|
|
import Notify from '../../dist/notify/notify';
|
|
|
|
Page({
|
|
showNotify() {
|
|
Notify('通知内容');
|
|
},
|
|
|
|
showCustomColor() {
|
|
Notify({
|
|
message: '自定义颜色',
|
|
color: '#ad0000',
|
|
background: '#ffe1e1'
|
|
});
|
|
},
|
|
|
|
showCustomDuration() {
|
|
Notify({
|
|
duration: 1000,
|
|
message: '自定义时长'
|
|
});
|
|
},
|
|
|
|
onClickLeft() {
|
|
wx.navigateBack();
|
|
}
|
|
});
|