showLoading: function() {
if (wx.canIUse('showLoading')) {
wx.showLoading({ title: '加载中...' });
} else {
wx.showToast({
title: '加载中',
icon: 'loading'
});
}
},
closeLoading: function() {
if (wx.canIUse('hideLoading')) {
this.hideLoading();
} else {
wx.hideToast();
}
}
|