/** * Toast 工具类 * */ const Toast = { info(title){ uni.showToast({ title, icon: 'none', position: 'bottom' }); }, success(title){ uni.showToast({ title, position: 'bottom' }); }, error(title){ uni.showToast({ title, image: '/static/image/error.png', position: 'bottom' }); }, loading(title){ uni.showToast({ title, icon: 'loading', position: 'bottom' }); } } export default Toast;