123456789101112131415161718192021 |
- module.exports = {
- show,
- }
- function show(title, icon = "none", duration) {
- wx.hideLoading();
- setTimeout(() => {
- if (duration == null) {
- wx.showToast({
- icon: icon,
- title: title,
- });
- } else {
- wx.showToast({
- icon: icon,
- title: title,
- duration: 1000,
- });
- }
- }, 300)
- }
|