最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

mint

互联网 admin 3浏览 0评论

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); }  });
发布评论

评论列表 (0)

  1. 暂无评论