admin 管理员组

文章数量: 887021

mint

调用mint-ui message box confirm方法后点击确认和取消后如何执行对应的回调函数
MessageBox.confirm('', {  message: 'xxx,你确定?',  title: '提示',  confirmButtonText: 'abc',  cancelButtonText: '123'  }).then(action => {  if (action == 'confirm') {     //确认的回调 console.log(1);  } }).catch(err => {  if (err == 'cancel') {     //取消的回调 console.log(2); }  });

本文标签: mint