From 2d1cc07e5be9d226d23dc172031a3971ea43528f Mon Sep 17 00:00:00 2001
From: qinxianzhangyao <11053546+qinxianzhangyao@user.noreply.gitee.com>
Date: 星期五, 08 三月 2024 15:50:38 +0800
Subject: [PATCH] qxtj

---
 src/views/doctor/check/index.vue |   28 ++++++++++++++++++++++++----
 1 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/src/views/doctor/check/index.vue b/src/views/doctor/check/index.vue
index 9df16d9..696ba8a 100644
--- a/src/views/doctor/check/index.vue
+++ b/src/views/doctor/check/index.vue
@@ -22,6 +22,7 @@
           v-model="queryParams.tjNumber"
           style="width: 240px"
           placeholder="璇疯緭鍏ヤ綋妫�鍙�"
+          clearable
           @blur="hb"
           @keyup.enter.native="submitForm"
         ></el-input>
@@ -223,7 +224,7 @@
               <el-select
                 v-model="form.hzDeptId"
                 multiple
-                filterable569-0=
+                filterable
                 style="width: 100%"
               >
                 <el-option
@@ -406,9 +407,9 @@
         <table
           style="
             width: 96%;
-            height:70px
+            height:70px;
             margin: 10px 10px;
-            margin-bottom:10px
+            margin-bottom:10px;
             border: 1px solid #dfe6ec;
             border-collapse: collapse;
             font-size:16px
@@ -1329,7 +1330,26 @@
     // 鎼滅储
     submitForm() {
       this.queryParams.page = 1;
-      this.getList();
+      this.loading = true;
+      this.queryParams.type = this.tjStatus;
+      getProList(this.queryParams).then((response) => {
+        if (response.code == 200) {
+          this.loading = false;
+          if (response.data) {
+            if (response.data.date) {
+              this.tableList = response.data.date;
+              this.queryParams.tjNumber =""
+            } else {
+              this.tableList = response.data.customers;
+              this.queryParams.tjNumber =""
+            }
+            this.total = response.data.total;
+          } else {
+            this.tableList = [];
+          }
+        }
+      });
+     
       
       // this.loading = true;
       // (this.queryParams = {

--
Gitblit v1.8.0