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
调用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); } });