From d1367a2eafbc26cadf07abb3caa94a0d64d09cab Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期二, 13 八月 2024 14:14:12 +0800
Subject: [PATCH] 测试完成

---
 src/views/patient/patient/profile/index.vue |   38 ++++++++++++++++++++++++++++++--------
 1 files changed, 30 insertions(+), 8 deletions(-)

diff --git a/src/views/patient/patient/profile/index.vue b/src/views/patient/patient/profile/index.vue
index 9427432..e0936bd 100644
--- a/src/views/patient/patient/profile/index.vue
+++ b/src/views/patient/patient/profile/index.vue
@@ -42,7 +42,7 @@
         <span class="mulsz" slot="label"
           ><i class="el-icon-s-management"></i> 鍖荤枟妗f</span
         >
-        <el-tabs v-model="sonactiveName" @tab-click="handleClick">
+        <el-tabs v-model="sonactiveName" @tab-click="handleClickson">
           <el-tab-pane name="outpatient"
             ><span class="mulsz" slot="label"
               >闂ㄨ瘖({{ mznumber }})</span
@@ -50,12 +50,12 @@
           >
           <el-tab-pane name="inhospital"
             ><span class="mulsz" slot="label"
-              >浣忛櫌({{ zynumber }})
+              >鍦ㄩ櫌({{ zynumber }})
             </span></el-tab-pane
           >
           <el-tab-pane name="checkout"
             ><span class="mulsz" slot="label"
-              >浣撴({{ jynumber }})
+              >鍑洪櫌({{ jynumber }})
             </span></el-tab-pane
           >
         </el-tabs>
@@ -296,7 +296,7 @@
       <!-- 鑱旂郴鐢佃瘽 -->
       <div class="bottom-message">
         <div class="headline">
-          鍙风爜缁存姢<span style="margin-right: 60px">&nbsp;&nbsp;</span>
+          浜插睘鍙风爜缁存姢<span style="margin-right: 60px">&nbsp;&nbsp;</span>
           <el-button type="primary" @click="addcompiletb">+鏂板</el-button>
         </div>
         <div class="Table-screen">
@@ -636,7 +636,10 @@
   delcontactinformation,
   listcontactinformation,
   alterpatient,
+  Patientclinic,
 } from "@/api/patient/homepage";
+import { listPatouthosp } from "@/api/smartor/patouthosp";
+import { listpatient } from "@/api/patient/record";
 
 export default {
   name: "Profile",
@@ -788,9 +791,23 @@
   },
 
   methods: {
-    // 鏌ヨ妗f鍒楄〃淇℃伅
-    getList() {
+    // 鏌ヨ鍖荤枟妗f鍚勫垪琛ㄤ俊鎭�
+    getList(type) {
       this.loading = true;
+      if (type == 1) {
+        // 闂ㄨ瘖璁板綍
+        listPatouthosp({ patid: this.id }).then((response) => {
+          console.log(response);
+        });
+      } else if (type == 2) {
+        listpatient({ patid: this.id }).then((response) => {
+          console.log(response);
+        });
+      } else if (type == 3) {
+        listpatient({ patid: this.id }).then((response) => {
+          console.log(response);
+        });
+      }
     },
     getcontactlist() {
       listcontactinformation({ patid: this.id }).then((response) => {
@@ -943,7 +960,12 @@
     },
     // tab鍒囨崲
     handleClick(tab, event) {
-      console.log(tab, event);
+      this.getList(tab.index);
+    },
+    handleClickson(tab, event) {
+      console.log(tab.index, "son");
+
+      this.getList(tab.index);
     },
     // 鑱旂郴鏂瑰紡鏂板
     Addanumber() {},
@@ -952,7 +974,7 @@
     gettabList() {
       const tagqueryParams = {
         pageNum: 1,
-        pageSize: 1000,
+        pageSize: 10000,
         tagcategoryid: "0",
       };
       listtag(tagqueryParams).then((response) => {

--
Gitblit v1.9.3