From f56aebe1dc0d462815e5d7a7e1571504fa38ee2b Mon Sep 17 00:00:00 2001
From: xiejun <xj@2023>
Date: 星期二, 30 五月 2023 11:05:50 +0800
Subject: [PATCH] 属性映射界面同步按钮接口增加
---
Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue b/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
index 92098e3..bb1501a 100644
--- a/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
+++ b/Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
@@ -366,8 +366,8 @@
this.attrRef.queryNotIn = "";
this.attrRef.selectData.forEach(item => {
this.btmType.attributes.push({
- id: item.key,
- name: item.label,
+ id: item.id,
+ name: item.name,
typeValue: item.typeValue,
typeKey: item.typeValue,
attrDataType : item.typeValue,
@@ -375,7 +375,7 @@
description: item.description,
attributeLength: item.maxLength
});
- this.attrRef.queryNotIn += (item.key + ",")
+ this.attrRef.queryNotIn += (item.id + ",")
});
this.closeAttrDialog();
},
--
Gitblit v1.9.3