在使用iview发现点击确定的时候,他的弹层会自动关闭(默认的确定和取消 footer)
解决办法 使用slot="footer"添加一个footer,自定义确定取消的方法控制弹层的显示与隐藏。
<div slot="footer">
<Button
size="large"
@click="showDialog = false"
>取消</Button>
<Button
type="primary"
size="large"
@click="submitDialog"
>确定</Button>
</div>