11
WXL
2024-08-01 6914d3d6ab1f76e6f1b85fdb547b016707ae0179
src/views/project/fund/performancedetails/index.vue
@@ -1789,12 +1789,20 @@
      };
      this.$modal.loading("正在提交审核,请稍候!");
      checkfund(checkFundObj).then(res => {
        if (res.code == 200) {
        //关闭窗口
        this.reset();
        this.$modal.closeLoading();
        this.$modal.msgSuccess("审核完成!");
        this.$store.dispatch("tagsView/delView", this.$route);
        this.$router.go(-1);
        } else {
          if (res.msg) {
            this.$modal.msgError("操作失误");
          } else {
            this.$modal.msgError(res.msg);
          }
        }
      });
    },