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里面就是返回取消的了