From a3350d3b221f68b00d7476b481455406cb6ddcc5 Mon Sep 17 00:00:00 2001
From: qx <1084500556@qq.com>
Date: 星期一, 14 七月 2025 09:18:42 +0800
Subject: [PATCH] qx

---
 src/views/system/info/index.vue |  271 ++++++++++++++++++++---------------------------------
 1 files changed, 103 insertions(+), 168 deletions(-)

diff --git a/src/views/system/info/index.vue b/src/views/system/info/index.vue
index 775b407..de56ed4 100644
--- a/src/views/system/info/index.vue
+++ b/src/views/system/info/index.vue
@@ -1,48 +1,21 @@
 <template>
   <div class="app-container">
-    <el-form
-      :model="queryParams"
-      ref="queryForm"
-      size="small"
-      :inline="true"
-      v-show="showSearch"
-      label-width="68px"
-    >
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
       <el-row>
         <el-col :span="11">
           <el-form-item label="鍗曚綅鍚嶇О" prop="company" style="display: flex">
-            <el-select
-              :remote-method="getRemoteData"
-              v-model="queryParams.company"
-              value-key="drugManufacturerId"
-              remote
-              filterable
-              placeholder="璇烽�夋嫨鍗曚綅鍚嶇О"
-              clearable
-              @change="searchSelect"
-            >
-              <el-option
-                v-for="dict in CompanyList"
-                :key="dict.drugManufacturerId"
-                :label="dict.cnName"
-                :value="dict.drugManufacturerId"
-              />
+            <el-select :remote-method="getRemoteData" v-model="queryParams.company" value-key="drugManufacturerId"
+              remote filterable placeholder="璇烽�夋嫨鍗曚綅鍚嶇О" clearable @change="searchSelect">
+              <el-option v-for="dict in CompanyList" :key="dict.drugManufacturerId" :label="dict.cnName"
+                :value="dict.drugManufacturerId" />
             </el-select>
           </el-form-item>
         </el-col>
         <el-col :span="6">
           <el-form-item>
-            <el-button
-              type="primary"
-              icon="el-icon-search"
-              size="mini"
-              @click="handleQuery"
-              style="margin: 0 15px"
-              >鎼滅储</el-button
-            >
-            <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
-              >閲嶇疆</el-button
-            >
+            <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"
+              style="margin: 0 15px">鏌ヨ</el-button>
+            <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">閲嶇疆</el-button>
           </el-form-item>
         </el-col>
       </el-row>
@@ -93,51 +66,35 @@
             <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
         </el-row> -->
 
-    <el-table
-      id="sig"
-      v-loading="loading"
-      :data="infoList"
-      @selection-change="handleSelectionChange"
-      border
-      ref="tb"
-      max-height="260px"
-    >
+    <el-table id="sig" v-loading="loading" :data="infoList" @selection-change="handleSelectionChange" border ref="tb"
+      max-height="260px">
       <el-table-column type="selection" width="55" align="center" />
       <el-table-column label="閮ㄩ棬" align="center" prop="pacName" />
       <el-table-column label="棰勬浜烘暟" align="center" prop="count" />
       <el-table-column label="瀹炴浜烘暟" align="center" prop="sjCount" />
+        <el-table-column label="宸茬粨浜烘暟" align="center" prop="yjsrs" />
       <el-table-column label="搴旀敹閲戦" align="center" prop="copeWith" />
       <el-table-column label="绛剧害閲戦" align="center" prop="signingPrice">
       </el-table-column>
-      <el-table-column
-        label="宸蹭粯閲戦"
-        align="center"
-        prop="transactionAmount"
-      />
+      <el-table-column label="宸蹭粯閲戦" align="center" prop="transactionAmount" />
       <el-table-column label="宸" align="center" prop="difference" />
       <el-table-column label="绛剧害浜�" align="center" prop="payer" />
-      <el-table-column
-        label="棰勭害鏃堕棿"
-        align="center"
-        prop="createTime"
-        :formatter="formatDate"
-      />
+      <el-table-column label="棰勭害鏃堕棿" align="center" prop="createTime" :formatter="formatDate" />
     </el-table>
 
-    <el-form
-      :inline="true"
-      :model="formInline"
-      class="demo-form-inline"
-      style="margin: 12px 6px"
-      label-width="100px"
-    >
+   
+    <div >
+      <el-radio-group v-model="jcStatus" @change="radioChange" style="margin-left: 20px; margin-top: 20px">
+        <el-radio-button label="0">宸叉鏈粨璐︿汉鍛�</el-radio-button>
+        <el-radio-button label="1">鏈浜哄憳</el-radio-button>
+        <el-radio-button label="2">鍏ㄩ儴浜哄憳</el-radio-button>
+      </el-radio-group>
+
+       <el-form :inline="true" :model="formInline" class="demo-form-inline" style="margin: 12px 6px" label-width="100px">
       <el-row>
         <el-col :span="5">
           <el-form-item label="璐熻矗浜�" style="display: flex">
-            <el-input
-              v-model="formInline.payer"
-              placeholder="鍗曚綅璐熻矗浜�"
-            ></el-input>
+            <el-input v-model="formInline.payer" placeholder="鍗曚綅璐熻矗浜�"></el-input>
           </el-form-item>
         </el-col>
         <el-col :span="6">
@@ -147,28 +104,15 @@
         </el-col>
         <el-col :span="6">
           <el-form-item label="浜ゆ槗绫诲瀷" prop="payType" style="display: flex">
-            <el-select
-              v-model="formInline.payType"
-              placeholder="璇烽�夋嫨浜ゆ槗绫诲瀷"
-            >
-              <el-option
-                v-for="dict in dict.type.dict_pay_type"
-                :key="dict.value"
-                :label="dict.label"
-                :value="dict.value"
-              ></el-option>
+            <el-select v-model="formInline.payType" placeholder="璇烽�夋嫨浜ゆ槗绫诲瀷">
+              <el-option v-for="dict in dict.type.dict_pay_type" :key="dict.value" :label="dict.label"
+                :value="dict.value"></el-option>
             </el-select>
           </el-form-item>
         </el-col>
         <el-col :span="4">
           <el-form-item style="display: flex">
-            <el-button
-              type="primary"
-              size="mini"
-              @click="SubmitEvent"
-              style="margin: 0 15px"
-              >鏀惰垂</el-button
-            >
+            <el-button type="primary" size="mini" @click="SubmitEvent" style="margin: 0 15px">缁撹处</el-button>
           </el-form-item>
         </el-col>
         <!-- <el-col :span="7">
@@ -188,65 +132,37 @@
       </el-row>
     </el-form>
 
-    <div style="display: flex; justify-content: space-between;">
-      <el-radio-group
-        v-model="jcStatus"
-        @input="radioChange"
-        style="margin-left: 20px; margin-top: 20px"
-      >
-        <el-radio-button label="0">宸叉鏈粨璐︿汉鍛�</el-radio-button>
-        <el-radio-button label="1">鏈浜哄憳</el-radio-button>
-        <el-radio-button label="2">鍏ㄩ儴浜哄憳</el-radio-button>
-      </el-radio-group>
 
-      <el-form
-        :model="queryParams1"
-        ref="queryForm"
-        size="small"
-        :inline="true"
-        v-show="showSearch"
-        label-width="68px"
-        style="margin-top: 20px; margin-right: 22%;"
-      >
-        <el-form-item label="缁撹处鏃堕棿">
-            <el-date-picker clearable v-model="queryParams1.reservationTime" type="date" value-format="yyyy-MM-dd"
-              placeholder="璇烽�夋嫨缁撹处鏃堕棿">
-            </el-date-picker>
-          </el-form-item>
-        <el-form-item>
-            <el-button
-              type="primary"
-              icon="el-icon-search"
-              size="mini"
-              @click="handleQuery1"
-              style="margin: 0 15px"
-              >鎼滅储</el-button
-            >
-            <el-button icon="el-icon-refresh" size="mini" @click="resetQuery1"
-              >閲嶇疆</el-button
-            >
-          </el-form-item>
-      </el-form>
+     
     </div>
 
     <el-row :gutter="20">
+       <!-- <el-form :model="queryParams1" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"
+        style="margin-top: 20px; margin-right: 22%;">
+        <el-form-item label="缁撹处鏃堕棿">
+          <el-date-picker clearable v-model="queryParams1.reservationTime" type="date" value-format="yyyy-MM-dd"
+            placeholder="璇烽�夋嫨缁撹处鏃堕棿">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item>
+          <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery1"
+            style="margin: 0 15px">鏌ヨ</el-button>
+          <el-button icon="el-icon-refresh" size="mini" @click="resetQuery1">閲嶇疆</el-button>
+        </el-form-item>
+      </el-form> -->
       <el-col :span="12" :xs="24" style="padding: 0px 20px">
         <div class="tj">
           <span class="tj_txt">浣撴浜哄憳鎯呭喌琛�</span>
         </div>
 
-        <el-table
-          v-loading="loading"
-          :data="peopleList"
-          border
-          max-height="260px"
-        >
+        <el-table v-loading="loadings" :data="peopleList" border max-height="260px" @selection-change="handlepeopleListChange">
           <el-table-column type="selection" width="55" align="center" />
-          <el-table-column label="搴忓彿" align="center" prop="newID" width="50" />
           <el-table-column label="濮撳悕" align="center" prop="name" width="100" />
-          <el-table-column label="鎬у埆" align="center" prop="sex" width="80" />
-          <el-table-column label="鐢佃瘽" align="center" prop="iphone" width="120" />
-          <el-table-column label="鐘舵��" align="center" prop="tjStatus" width="80"  />
+          <el-table-column label="鎬у埆" align="center" prop="xb" width="80" />
+          <el-table-column label="鐢佃瘽" align="center" prop="dh" width="120" />
+                    <el-table-column label="閲戦" align="center" prop="tjf" width="120" />
+
+          <el-table-column label="鐘舵��" align="center" prop="tjStatus" width="80" />
           <el-table-column label="浣撴鏃堕棿" align="center" prop="tjTime">
           </el-table-column>
         </el-table>
@@ -257,22 +173,9 @@
           <span class="tj_txt">宸茬粨璐﹁褰�</span>
         </div>
 
-        <el-table
-          v-loading="loading"
-          :data="dataList"
-          border
-          max-height="260px"
-        >
-          <el-table-column
-            label="浜ゆ槗閲戦"
-            align="center"
-            prop="transactionAmount"
-          />
-          <el-table-column
-            label="浜ゆ槗鏂瑰紡"
-            align="center"
-            prop="paymentMethod"
-          />
+        <el-table v-loading="loading" :data="dataList" border max-height="260px">
+          <el-table-column label="浜ゆ槗閲戦" align="center" prop="transactionAmount" />
+          <el-table-column label="浜ゆ槗鏂瑰紡" align="center" prop="paymentMethod" />
           <el-table-column label="浜ゆ槗浜哄憳" align="center" prop="payer" />
           <el-table-column label="鎿嶄綔浜哄憳" align="center" prop="payee">
           </el-table-column>
@@ -328,6 +231,8 @@
       },
       // 閬僵灞�
       loading: true,
+       // 閬僵灞�
+      loadings: false,
       // 閫変腑鏁扮粍
       ids: [],
       // 闈炲崟涓鐢�
@@ -342,6 +247,7 @@
       // 浣撴鍗曚綅缂磋垂鏄庣粏琛ㄦ牸鏁版嵁
       infoList: [],
       copeWith: "",
+      pacIds: "",
       transactionAmount: "",
       dataList: [],
       tableList: [],
@@ -366,8 +272,8 @@
         payer: null,
         payee: null,
       },
-      queryParams1:{
-        reservationTime:null
+      queryParams1: {
+        reservationTime: null
       },
       // 琛ㄥ崟鍙傛暟
       form: {},
@@ -416,7 +322,33 @@
       this.compId = val;
     },
 
-    radioChange(val) {},
+    radioChange(val) { 
+      this.peopleList = []
+      this.loadings = true
+       let data = {
+          teamNo: this.teamNo,
+          pacId: this.pacIds
+        }
+        getTeamTjPeopleList(data).then((res) => {
+          if (res.data) {
+            if (this.jcStatus == 0) {
+              this.peopleList = res.data.yjwjzList;
+               
+            } else if (this.jcStatus == 1) {
+              this.peopleList = res.data.wjList;
+            } else {
+              this.peopleList = res.data.syList;
+            }
+           
+          }
+           this.loadings = false
+        });
+    },
+
+
+    handlepeopleListChange(selection){
+      console.log(selection)
+    },
 
     // 浣撴鍏徃鎷奸煶鎼滅储
     getRemoteData(query) {
@@ -462,7 +394,7 @@
         this.infoList.forEach((item) => {
           this.copeWith = item.copeWith;
           this.transactionAmount = item.transactionAmount;
-          this.formInline.price = item.copeWith - item.transactionAmount;
+          
           if (item.payInfo != null) {
             this.tjCompPayId = item.payInfo.tjCompPayId;
           }
@@ -488,10 +420,10 @@
         this.loading = false;
       });
     },
-    handleQuery1(){
+    handleQuery1() {
 
     },
-     resetQuery1() {
+    resetQuery1() {
       this.resetForm("queryForm1");
       this.handleQuery1();
     },
@@ -502,7 +434,6 @@
     },
     // 澶氶�夋閫変腑鏁版嵁
     handleSelectionChange(selection) {
-      console.log(2222);
       if (selection.length > 1) {
         let del_row = selection.shift();
         this.$refs.tb.toggleRowSelection(del_row, false); //璁剧疆杩欎竴琛屽彇娑堥�変腑
@@ -512,11 +443,12 @@
       // this.multiple = !selection.length;
       this.tableList = selection;
       this.teamNo = "";
+      this.pacIds = "";
       this.tableList.forEach((item) => {
         this.teamNo = item.teamNo;
+        this.pacIds = item.pacId
         this.copeWith = item.copeWith;
         this.transactionAmount = item.transactionAmount;
-        this.formInline.price = item.copeWith - item.transactionAmount;
         if (item.payInfo != null) {
           this.tjCompPayId = item.payInfo.tjCompPayId;
         }
@@ -537,18 +469,24 @@
           });
         }
       });
-      console.log(11111);
+      this.loadings = true
       if (this.teamNo) {
-        getTeamTjPeopleList(this.teamNo).then((res) => {
+        let data = {
+          teamNo: this.teamNo,
+          pacId: this.pacIds
+        }
+        getTeamTjPeopleList(data).then((res) => {
           if (res.data) {
-            this.peopleList = res.data;
-            res.data.forEach((item, index) => {
-              item.newID =
-                (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
-                index +
-                1;
-            });
+            if (this.jcStatus == 0) {
+              this.peopleList = res.data.yjwjzList;
+            } else if (s.jcStatus == 1) {
+              this.peopleList = res.data.wjList;
+            } else {
+              this.peopleList = res.data.syList
+                ;
+            }
           }
+           this.loadings = false
         });
       }
     },
@@ -558,9 +496,6 @@
     //   this.open = true;
     //   this.title = "娣诲姞浣撴鍗曚綅缂磋垂鏄庣粏";
     // },
-
-    // 鍗曢�夋寜閽�
-    radioChange(val) {},
 
     /** 鏀惰垂鎻愪氦鎸夐挳 */
     SubmitEvent() {
@@ -608,7 +543,7 @@
       }
     },
     /** 瀵煎嚭鎸夐挳鎿嶄綔 */
-    handleExport() {},
+    handleExport() { },
   },
 };
 </script>

--
Gitblit v1.8.0