exports.showLoading =()=>{
console.log('showLoading');
Toast({
selector: '#t-toast',
message: '加载中...',
theme: 'loading',
direction: 'column',
duration: 0,
preventScrollThrough:true,
});
}
exports.hideLoading =()=>{
console.log('hideLoading');
hideToast({
selector: '#t-toast',
});
}