小程序提示框,加载框,模态框写法

提示框:

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: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
})

原文地址:https://www.cnblogs.com/panax/p/9661482.html