Modal对话框progress

Posted 辣可乐少加冰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Modal对话框progress相关的知识,希望对你有一定的参考价值。

文章目录

a-modal 弹出层

a-modal 提示框(visible):

定义好组件

    <a-modal
      title="加载中..."
      :visible="visible"
      width="400px"
      centered
      :footer="null"

      @cancel="handleCancel"
    >
      <a-progress :percent="percent"></a-progress>
    </a-modal>

	data() 
		visible:false,
		percent:0,
   

代码如下(示例):

// 点击事件中编写逻辑 
ExportClick () 
      that.percent = 0
      that.visible = true
      const downtime = setInterval(() => 
        // 定义setinterval percent++ 
        that.percent++
        if (that.percent >= 99) 
          clearInterval(downtime)
        
      , 100)
     
      axios.post('/', 
        ...setIdcardAttr,
      )
        .then(
	          function (res) 
	            if (res.data.responseCode === '10001') 
	              that.percent = 100
	              clearInterval(downtime)
	              that.visible = false
	              that.$message.success('下载成功')
	              window.location.href = `$res.data.data.url`
	             else 
	              that.visible = false
	            
	          
	        )
            .finally((res) => 
              that.$emit('afterClose')
              that.visible = false
            )
    ,
    

世界因代码而改变

以上是关于Modal对话框progress的主要内容,如果未能解决你的问题,请参考以下文章

modal=true 的 Primefaces 对话框无法正常工作

如何设置bootstrap modal使其点击对话框外的灰色背景不退出?

bootstrap modal 如何设置使其点击对话框外的灰色背景不退出!!

ant design组件Modal对话框的Confirm怎么使用的,怎么调用请求,我这代码不行啊

Modal和Form结合的 表单对话框 _react

wxPython Modal Dialog模式对话框,Python对话框中打开对话框