12345678910111213141516171819202122 |
- 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)
- }
- module.exports = {
- show,
- }
|