export function showToast(title) {
// wx.hideLoading();
setTimeout(() => {
wx.showToast({
title: title,
icon:'none',
duration:2000,
mask:true,
success:function (params) {
// setTimeout(() => {
// wx.hideToast();
// }, 2500);
}
});
}, 200);
}