qinxianzhangyao
2023-12-11 9d26234c1d5f760fcab4adea68984c02485bcf82
src/views/doctor/checkAll/index.vue
@@ -713,17 +713,21 @@
      // 页面数据
      getcheckList(this.queryParams).then((response) => {
        if (response.code == 200) {
          this.loading = false;
        if (response.data) {
          if (response.data.date) {
            this.checkList = response.data.date;
          } else {
            this.checkList = response.data.customers;
          }
          this.loading = false;
          this.total = response.data.total;
        } else {
          this.checkList = [];
        }
        }
      }),
        // 获取单位信息集合
        getCompany(this.queryParam).then((response) => {
@@ -857,6 +861,7 @@
    // 搜索
    submitForm() {
      this.loading = true;
      this.queryParams.compId = this.CheckBox.drugManufacturerId;
      this.queryParams.checkStatus = this.tjStatus;
      if (this.startTime) {
@@ -869,16 +874,20 @@
      // 页面数据
      getcheckList(this.queryParams).then((response) => {
        if (response.code == 200) {
          this.loading = false;
        if (response.data.customers != null) {
          this.checkList = response.data.customers;
          this.checkList.forEach((item) => {
            this.tjStatus = item.tjStatus.toString();
          });
          this.loading = false;
          this.total = response.data.total;
        } else {
          this.checkList = [];
        }
        }
      });
    },
    // 重置