mint-ui 的messagebox 点击完成后,怎么跳转路由?
if (response.data.success) {
this.CLEAR_ALL_SETTLE()
MessageBox({
title: '支付成功',
message: '您的订单会尽快给您处理',
confirmButtonText: '完成'
}).alert().then(action => {
this.$router.push({ path: '/center/mycenter'});
//这里路由跳转没生效啊
});
} else {
MessageBox({
title: '支付失败',
message: '支付遇到问题,请尝试重新支付',
showCancelButton: true,
confirmButtonText: '重新支付'
}).confirm().then(action => {
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这样呢?
。。。。。。