From b496da6315314d9bd048ac2214d8bc95d2f1df02 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 13 十一月 2024 08:59:18 +0800
Subject: [PATCH] 优化

---
 company/src/components/enterprise/selectEmployees.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/company/src/components/enterprise/selectEmployees.vue b/company/src/components/enterprise/selectEmployees.vue
index dfa5994..90c6943 100644
--- a/company/src/components/enterprise/selectEmployees.vue
+++ b/company/src/components/enterprise/selectEmployees.vue
@@ -81,6 +81,7 @@
       confirming:false,
       type: '',
       val: '',
+      companyId: null,
       memberIds:[],
       loading:false,
       memberList:[],
@@ -115,6 +116,7 @@
       if (obj.type) {
         this.type = obj.type
       }
+      this.companyId = obj.companyId
       this.list = []
       if (obj.insuranceApplyId) {
         this.insuranceApplyId = obj.insuranceApplyId
@@ -162,9 +164,6 @@
         }
         item.fee = this.price
       })
-
-      console.log(this.oldList)
-      console.log(this.seleData)
       this.confirming=false
       this.$emit('result', this.seleData)
       this.seleData=[]
@@ -197,6 +196,7 @@
         this.loading = true;
         findListByDTO({
           name: query,
+          companyId: this.companyId,
           insuranceApplyId: this.insuranceApplyId,
           notInInsuranceApplyId: this.notInInsuranceApplyId,
           validTime: this.validTime

--
Gitblit v1.9.3