话不多说 直接上代码
this.$dialog
.alert({
title: '温馨提示', //加上标题
message: '这是内容', //改变弹出框的内容
showCancelButton: true //展示取水按钮
})
.then(() => {
//点击确认按钮后的调用
console.log('点击了确认按钮噢')
this.$router.push({
path: '/businesshandling'
// query: { source: this.$route.query.source, code: this.code }
})
})
.catch(() => {
//点击取消按钮后的调用
console.log('点击了取消按钮噢')
})
这是效果图