21 lines
230 B

2 years ago
function shortToast(str) {
uni.showToast({
title: str,
icon: 'none',
duration: 2000
})
}
function longToast(str) {
uni.showToast({
title: str,
icon: 'none',
duration: 3500
})
}
export {
shortToast,
longToast
}