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
40 lines
857 B
JavaScript
40 lines
857 B
JavaScript
module.exports = {
|
||
showZanTopTips(content = '', options = {}) {
|
||
let zanTopTips = this.data.zanTopTips || {};
|
||
// 如果已经有一个计时器在了,就清理掉先
|
||
if (zanTopTips.timer) {
|
||
clearTimeout(zanTopTips.timer);
|
||
zanTopTips.timer = undefined;
|
||
}
|
||
|
||
if (typeof options === 'number') {
|
||
options = {
|
||
duration: options
|
||
};
|
||
}
|
||
|
||
// options参数默认参数扩展
|
||
options = Object.assign({
|
||
duration: 3000
|
||
}, options);
|
||
|
||
// 设置定时器,定时关闭topTips
|
||
let timer = setTimeout(() => {
|
||
this.setData({
|
||
'zanTopTips.show': false,
|
||
'zanTopTips.timer': undefined
|
||
});
|
||
}, options.duration);
|
||
|
||
// 展示出topTips
|
||
this.setData({
|
||
zanTopTips: {
|
||
show: true,
|
||
content,
|
||
options,
|
||
timer
|
||
}
|
||
});
|
||
}
|
||
};
|