提示框:
wx.showToast({
title: message,
icon: 'loading',
mask: true,
duration: 20000
});
wx.hideToast();
加載框:
wx.showToast({
title: message,
icon: 'loading',
mask: true,
duration: 20000
});
需要隱藏:wx.hideLoading();
模態框:
wx.showModal({
title: '提示',
content: '當前微信版本過低,無法使用該功能,請升級到最新微信版本后重試。'
})