diff --git a/src/views/dataSearch/integrationlibrary/index.vue b/src/views/dataSearch/integrationlibrary/index.vue
index 6a38364..7501a4c 100644
--- a/src/views/dataSearch/integrationlibrary/index.vue
+++ b/src/views/dataSearch/integrationlibrary/index.vue
@@ -62,8 +62,8 @@
-
-
+
+
{{ d.tagName }}
@@ -240,6 +240,7 @@ export default {
idcTableTaglist(this.tagqueryParam).then((res) => {
if (res.success) {
this.datatagSources = res.result.records;
+ this.datatagSources.unshift({tagName:'全部',id:null})
this.queryParam.tagId = res.result.records[0].id;
} else {
this.$message.warning(res.message);
diff --git a/src/views/dataSearch/sourceDatabase/index.vue b/src/views/dataSearch/sourceDatabase/index.vue
index 0e5cb99..1383115 100644
--- a/src/views/dataSearch/sourceDatabase/index.vue
+++ b/src/views/dataSearch/sourceDatabase/index.vue
@@ -61,8 +61,8 @@
-
-
+
+
{{ d.tagName }}
@@ -236,6 +236,7 @@ export default {
idcTableTaglist(this.tagqueryParam).then((res) => {
if (res.success) {
this.datatagSources = res.result.records;
+ this.datatagSources.unshift({tagName:'全部',id:null})
this.queryParam.tagId = res.result.records[0].id;
} else {
this.$message.warning(res.message);