qinxianzhangyao
2023-12-12 f4c300867675f292e882d5125238bb970bc19bdf
src/views/doctor/check/index.vue
@@ -716,17 +716,20 @@
      this.loading = true;
      this.queryParams.type = this.tjStatus;
      getProList(this.queryParams).then((response) => {
        if (response.data) {
        if (response.code == 200) {
          this.loading = false;
          if (response.data.date) {
            this.tableList = response.data.date;
          if (response.data) {
            if (response.data.date) {
              this.tableList = response.data.date;
            } else {
              this.tableList = response.data.customers;
            }
            this.total = response.data.total;
          } else {
            this.tableList = response.data.customers;
            this.tableList = [];
          }
          this.total = response.data.total;
        } else {
          this.tableList = [];
        }
      });
    },
@@ -735,13 +738,16 @@
      this.queryParams.type = val;
      this.loading = true;
      getProList(this.queryParams).then((response) => {
        if (response.data) {
        if (response.code == 200) {
          this.loading = false;
          this.tableList = response.data.date;
          this.total = response.data.total;
        } else {
          this.tableList = [];
          if (response.data) {
            this.tableList = response.data.date;
            this.total = response.data.total;
          } else {
            this.tableList = [];
          }
        }
      });
    },
@@ -965,7 +971,11 @@
          setTimeout(() => {
            loading.close();
          }, 3000);
          this.$message.msgSuccess("报告正在生成,请两分钟后预览!");
          // this.$message.msgSuccess("报告正在生成,请两分钟后预览!");
          this.$message({
          type: "warning ",
          message: "报告正在生成,请两分钟后预览!!",
        });
        } else {
          this.dialogVisible = true;