Iview Modal 点击确定就关闭,我想禁止关闭该怎么办呢?

时间:2023-03-09 16:58:01
Iview Modal 点击确定就关闭,我想禁止关闭该怎么办呢?

网上各种loading,不推荐。用下面的方法直接就解决了

   <div slot="footer">
<Button type="text" size="large" @click="cancel()">取消</Button>
<Button type="primary" size="large" @click="modifyOk('userConfirm')">确定</Button>
</div>

  

如果需要关闭就用这个:this.modifyModal=false;
如果不需要关闭就不管就行了