From bdcf06feaaaa6675d03ffb48049f99f8590e24e8 Mon Sep 17 00:00:00 2001
From: mamc <1428594221@qq.com>
Date: 星期二, 11 七月 2023 11:11:42 +0800
Subject: [PATCH] 获取参照信息查询搜索框bug

---
 Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue b/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
index 38699eb..3a057e4 100644
--- a/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
+++ b/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
@@ -359,6 +359,12 @@
         },
         // 灞炴�ф睜鍔犺浇
         attrRefOnLoad(){
+            if (!this.attrRef.queryNotIn || (this.attrRef.queryNotIn === '' && this.btmType.attributes !== [])){
+              this.attrRef.queryNotIn = '';
+               this.btmType.attributes.forEach(item => {
+                  this.attrRef.queryNotIn += (item.id + ",")
+               })
+            }
             this.attrRef.loading = true;
             queryPage(this.attrRef.key,this.attrRef.queryNotIn,this.attrRef.page.currentPage, this.attrRef.page.pageSize).then(res => {
                 const data = res.data.data;
@@ -374,7 +380,7 @@
         },
         // 灞炴�ф睜妫�绱�
         attrRefSearch(form,done){
-            this.attrRef.key = form.key;
+            this.attrRef.key = form.id;
             this.attrRefOnLoad();
             done();
             this.attrRef.key = null;

--
Gitblit v1.9.3