this.$Modal.confirm点击确定触发onok的时候怎么阻止对话框默认关闭行为
时间: 2023-12-20 09:22:05 浏览: 313
Bootstrap Modal对话框如何在关闭时触发事件
在 iView 中,使用 `this.$Modal.confirm` 弹出的确认对话框,可以通过在 `on-ok` 事件中使用 `e.preventDefault()` 方法来阻止对话框默认的关闭行为。具体实现方式如下:
```vue
<template>
<div>
<Button type="primary" @click="showConfirm">打开确认对话框</Button>
</div>
</template>
<script>
export default {
methods: {
showConfirm() {
this.$Modal.confirm({
title: '确认对话框',
content: '你确定要执行此操作吗?',
onOk: this.handleOk
});
},
handleOk(e) {
// 阻止对话框默认关闭行为
e.preventDefault();
// 其他操作
console.log('点击确定按钮');
}
}
}
</script>
```
在 `handleOk` 方法中,我们使用 `e.preventDefault()` 方法来阻止默认的关闭事件。这样点击确定按钮时,确认对话框就不会关闭,可以在方法中执行其他操作,比如发送请求等。
阅读全文