mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* add src dir && add build * add build watch && change dir name * bower ignore package.json
33 lines
565 B
JavaScript
33 lines
565 B
JavaScript
module.exports = {
|
|
showZanToast(title, timeout) {
|
|
var zanToast = this.data.zanToast || {};
|
|
clearTimeout(zanToast.timer);
|
|
|
|
// 弹层设置~
|
|
zanToast = {
|
|
show: true,
|
|
title
|
|
};
|
|
this.setData({
|
|
zanToast
|
|
});
|
|
|
|
var timer = setTimeout(() => {
|
|
this.clearZanToast();
|
|
}, timeout || 3000);
|
|
|
|
this.setData({
|
|
'zanToast.timer': timer
|
|
});
|
|
},
|
|
|
|
clearZanToast() {
|
|
var zanToast = this.data.zanToast || {};
|
|
clearTimeout(zanToast.timer);
|
|
|
|
this.setData({
|
|
'zanToast.show': false
|
|
});
|
|
}
|
|
};
|