2016-12-20 11:23:39 +08:00

40 lines
766 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var timer = undefined;
module.exports = {
showZuiTopTips(content = '', options = {}) {
// 如果已经有一个计时器在了,就清理掉先
if (timer) {
clearTimeout(timer);
timer = undefined;
}
if (typeof options === 'number') {
options = {
duration: options
};
}
// options参数默认参数扩展
options = Object.assign({
duration: 3000
}, options);
// 展示出topTips
this.setData({
zuiTopTips: {
show: true,
content,
options
}
});
// 设置定时器定时关闭topTips
timer = setTimeout(() => {
this.setData({
'zuiTopTips.show': false
});
timer = undefined;
}, options.duration);
}
};