文字弹窗
uni.showToast({
title: '文字弹窗',
icon: 'none',
duration: 2000
})
图标文字弹框
uni.showToast({
title: '成功提示弹窗',
icon: 'success',
duration: 2000
})
取消确认弹框
uni.showModal({
title: '标题',
content: '副标题',
success: function(res) {
if (res.confirm) {
console.log('点击了确认')
} else {
console.log('点击了取消')
}
}
})
图片提示框
uni.showToast({
title: '标题',
image: '../../../static/logo.png',//使用本地的图片
duration: 2000
})
加载中提示框
uni.showLoading({
title:'加载中...'
});
uni.hideLoading();//取消
uni.showToast(OBJECT) | uni-app官网
标签:uniapp,showToast,方式,title,..,duration,uni,弹窗 From: https://blog.csdn.net/Yui_NIE/article/details/137159615