From a90a91591abd40952264685fafc2e7fc976543d0 Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Tue, 30 Apr 2024 10:27:08 +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 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/tag/Tag.vue b/src/views/tag/Tag.vue index f17fd1da..8146a613 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, name: this.source } + params = { ...params, source: 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, name: this.source } + params = { ...params, source: this.source } } this.getTableData(params) this.$refs.dataTable.expandedIds = [] @@ -209,6 +209,9 @@ export default { if (this.category) { params = { ...params, category: this.category } } + if (this.source) { + params = { ...params, source: this.source } + } this.pageObj.pageNo = 1 this.getTableData(params) this.$refs.dataTable.expandedIds = []