ElmentUI的提示对话框

Posted I know i am free

tags:

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


    // 解锁
    getTaskUnlock(data)
       this.$confirm(data.qualityinspector+'质检中,是否确认解锁?', '确定解锁', 
        confirmButtonText: '确定解锁',
        cancelButtonText: '取消',
        type: 'warning').then(() => 
          this.$store.dispatch("loading/CHANGE_LOADING", true);
          let params =
            clmnum:data.clmnum,//理赔号
            jobno:this.userInfo.account//当前账号
          
          getTaskUnlockApi(params).then((res) => 
            this.$store.dispatch("loading/CHANGE_LOADING", false);
            if (res.resultCode === 0) 
                // 解锁成功 0成功  500失败
                // data.unlocksign='2'
                this.$message( message: res.resultMsg, type: "success",showClose: true);
                this.intDataList();
            else
                this.$message( message: res.resultMsg, type: "warning",showClose: true);
             
          ).catch((err) => 
              this.$store.dispatch("loading/CHANGE_LOADING", false);
              // this.$message( message: err, type: "warning", showClose: true );
          );
      )
    ,


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

普惠NLP智能对话系统

Vue和ElmentUI实现订单信息的分页操作

elmentUI组件怎么绑定原生事件

elmentUI中 v-loading.fullscreen实现方式

elmentui的Steps 步骤条样式改造

Vue ElmentUI message组件customClass使用方法