You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
|
|
<cn>
|
|
#### 异步关闭
|
|
点击确定后异步关闭对话框,例如提交表单。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Asynchronously close
|
|
Asynchronously close a modal dialog when a user clicked OK button, for example,
|
|
you can use this pattern when you submit a form.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div>
|
|
<a-button type="primary" @click="showModal">Open</a-button>
|
|
<a-modal
|
|
title="Title"
|
|
:visible="visible"
|
|
@ok="handleOk"
|
|
:confirmLoading="confirmLoading"
|
|
@cancel="handleCancel"
|
|
>
|
|
<p>{{ModalText}}</p>
|
|
</a-modal>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
ModalText: 'Content of the modal',
|
|
visible: false,
|
|
confirmLoading: false,
|
|
}
|
|
},
|
|
methods: {
|
|
showModal() {
|
|
this.visible = true
|
|
},
|
|
handleOk(e) {
|
|
this.ModalText = 'The modal will be closed after two seconds';
|
|
this.confirmLoading = true;
|
|
setTimeout(() => {
|
|
this.visible = false;
|
|
this.confirmLoading = false;
|
|
}, 2000);
|
|
},
|
|
handleCancel(e) {
|
|
console.log('Clicked cancel button');
|
|
this.visible = false
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
```
|
|
|