spring
2025-03-07 2d55ed180fddd028bf4f839345bf0ef4d2f032e7
src/components/Table/value-table.vue
@@ -699,10 +699,6 @@
          }
        )
        .then((res) => {
          if (res.code === 201) {
            this.loading = false;
            return;
          }
          this.total = res.data.body.total;
          this.tableHead = res.data.head;
          this.tableData = res.data.records;
@@ -947,9 +943,6 @@
                  id: row.id,
                })
                .then((res) => {
                  if (res.code === 201) {
                    return;
                  }
                  this.$message.success("删除成功");
                  this.selectList("page");
                  this.$emit("delete");
@@ -1024,10 +1017,6 @@
          },
        })
        .then((res) => {
          if (res.code === 201) {
            this.upLoad = false;
            return;
          }
          this.$message.success("修改成功");
          this.upDia = false;
          this.selectList("page");
@@ -1131,10 +1120,6 @@
          },
        })
        .then((res) => {
          if (res.code === 201) {
            this.addLoad = false;
            return;
          }
          this.$message.success("添加成功");
          this.addDia = false;
          this.selectList("page");
@@ -1173,10 +1158,6 @@
          }
        )
        .then((res) => {
          if (res.code === 201) {
            this.loading = false;
            return;
          }
          this.downDia = false;
          this.loading = false;
          this.$message.success("导出成功");
@@ -1224,7 +1205,7 @@
      this.$refs.upload.clearFiles();
      this.uploadDia = false;
      this.uploading = false;
      if (response.code == 201) {
      if (response.code != 200) {
        this.$message.error(response.message);
        return;
      }
@@ -1326,9 +1307,6 @@
                ),
              })
              .then((res) => {
                if (res.code === 201) {
                  return;
                }
                this.$message.success("删除成功");
                this.selectList("page");
              })
@@ -1363,9 +1341,6 @@
            }
          )
          .then((res) => {
            if (res.code === 201) {
              return;
            }
            this.$parent.submitBatchCheckDialog();
            this.$message.success("操作成功");
          });