其他分享
首页 > 其他分享> > elementui 审核弹框

elementui 审核弹框

作者:互联网

      this.$confirm("您确认要审核吗?", "警告", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(function () {
          return auditors({ id: id, authStatus: 1 });
        })
        .then(() => {
          this.getList();
          this.msgSuccess("审核成功");
        })

 

标签:function,return,msgSuccess,elementui,弹框,审核,authStatus,id
来源: https://www.cnblogs.com/jqynr/p/16173160.html