自定义toast实现方法分享
// 自定义toast方法
function showToast(message) {
wx.showToast({
title: message,
icon: 'none',
duration: 2000
})
}
77.6KB
文件大小:
评论区