From 22acd6baa3aa45fdffd983d2ec0975559b5eaa34 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Thu, 30 Oct 2025 18:54:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=80=E6=9C=AF=E6=96=B9=E6=A1=88=E5=BA=93?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../technical/components/LeftType.vue | 3 +- .../technical/components/RightTable.vue | 35 +++++--- .../technical/components/TechnicalDetail.vue | 7 +- .../technical/components/TechnicalForm.vue | 89 ++++++++++++++++++- .../enterpriseLibrary/technical/index.vue | 2 +- 5 files changed, 117 insertions(+), 19 deletions(-) diff --git a/src/views/enterpriseLibrary/technical/components/LeftType.vue b/src/views/enterpriseLibrary/technical/components/LeftType.vue index 1733449..920a22f 100644 --- a/src/views/enterpriseLibrary/technical/components/LeftType.vue +++ b/src/views/enterpriseLibrary/technical/components/LeftType.vue @@ -64,7 +64,7 @@ export default { }, mounted() { if (this.value) { - this.activeCategory = this.value + this.activeCategory = this.value; } }, created() { @@ -94,6 +94,7 @@ export default { handleCategoryClick(id) { this.activeCategory = id this.$emit('change', id) + this.handleQuery(); }, handleCategoryCommand(command) { if (command.type === 'edit') { diff --git a/src/views/enterpriseLibrary/technical/components/RightTable.vue b/src/views/enterpriseLibrary/technical/components/RightTable.vue index 5e93673..ce7a055 100644 --- a/src/views/enterpriseLibrary/technical/components/RightTable.vue +++ b/src/views/enterpriseLibrary/technical/components/RightTable.vue @@ -2,12 +2,12 @@