From fc8598426ffacf1152746159ae233f7452bafdf0 Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Tue, 30 Apr 2024 10:32:18 +0800 Subject: [PATCH] =?UTF-8?q?CN-1654=20fix:=20=E4=BF=AE=E5=A4=8Dtag=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tag/Tag.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/tag/Tag.vue b/src/views/tag/Tag.vue index 8146a613..25481a56 100644 --- a/src/views/tag/Tag.vue +++ b/src/views/tag/Tag.vue @@ -161,7 +161,7 @@ export default { params = { ...params, name: this.name } } if (this.source || this.source === 0) { - params = { ...params, source: this.source } + params = { ...params, isBuiltIn: this.source } } this.getTableData(params) this.$refs.dataTable.expandedIds = [] @@ -178,7 +178,7 @@ export default { params = { ...params, name: this.name } } if (this.source || this.source === 0) { - params = { ...params, source: this.source } + params = { ...params, isBuiltIn: this.source } } this.getTableData(params) this.$refs.dataTable.expandedIds = [] @@ -209,8 +209,8 @@ export default { if (this.category) { params = { ...params, category: this.category } } - if (this.source) { - params = { ...params, source: this.source } + if (this.source || this.source === 0) { + params = { ...params, isBuiltIn: this.source } } this.pageObj.pageNo = 1 this.getTableData(params)