mint-ui里面的MessageBox怎么去判断确认还是取消
Posted antyhouse
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mint-ui里面的MessageBox怎么去判断确认还是取消相关的知识,希望对你有一定的参考价值。
MessageBox.confirm('', {
title: '请注意',
message: '添加供应商前,请先搜索该供应商是否存在,请勿重复添加',
showCancelButton: true,
confirmButtonText: '去搜索',
cancelButtonText: '新增'
}).then((res) => {
console.log(res)
if (res === 'confirm') {
this.$nextTick(() => {
this.$refs.gain.focus()
})
}
}).catch(() => {
navigation('/supplier/editSuppplierInfo')
})
这里的catch很重要,在then里面去判断确认.catch里面就是返回取消的了
以上是关于mint-ui里面的MessageBox怎么去判断确认还是取消的主要内容,如果未能解决你的问题,请参考以下文章
mint-ui之toast使用(messagebox,indicator同理)
html文件里面怎么使用elementui的Message以及MessageBox