询问框
wx.showModal({
title: '确认要删除吗?',
showCancel: true,
success(res) {
if (res.confirm) {
console.log('确认')
} else {
console.log('取消')
}
}
})
提示框
wx.showModal({
title: '提交成功' ,
showCancel: false,
success() {
}
})
吐司
wx.showToast({
title: '提示文字',
icon: "none",
})