wx.showModal(OBJECT):模態彈窗。提示框,這個需要點擊,才能消失。
wx.showModal({
title: '提示',
showCancel: false,
content: '賬號不存在是否前往注冊',
success(res){
if (res.confirm) {
setTimeout(function () {
wx.navigateTo({
url: '../register/register'
})
}, 1000)
} else if (res.cancel) {
console.log('用戶點擊取消')
}
}
});
|