antd-vue的 $confirm 增加 确定按钮loading

this.$confirm({
        title: '警告',
        content: '确定要xxxxxx吗?',
        okText: '确定',
        okType: 'danger',
        cancelText: '取消',
        onOk() {
          return new Promise((resolve, reject) => {
            this.接口请求的方法().then(() => {
              resolve()
            })
          })
        },
      });

 当接口请求 .then 的时候会关闭弹窗提示,视具体情况也可以将 then 换成 finally

posted @ 2024-03-20 14:59  青云码上  阅读(337)  评论(0编辑  收藏  举报