From f01c7f9d5919b8a1186cbeafc6cd18ffa564dbcb Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 6 Jan 2021 13:35:27 +0800 Subject: [PATCH] =?UTF-8?q?refator:=20=E9=A1=B9=E7=9B=AE=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0jar=E5=8C=85=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/settings/project/MsProject.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/frontend/src/business/components/settings/project/MsProject.vue b/frontend/src/business/components/settings/project/MsProject.vue index 36f71ec385..36682a6fac 100644 --- a/frontend/src/business/components/settings/project/MsProject.vue +++ b/frontend/src/business/components/settings/project/MsProject.vue @@ -3,7 +3,12 @@ @@ -78,6 +83,8 @@ + + @@ -96,10 +103,14 @@ import MsTableOperatorButton from "../../common/components/MsTableOperatorButton import ApiEnvironmentConfig from "../../api/test/components/ApiEnvironmentConfig"; import TemplateComponent from "../../track/plan/view/comonents/report/TemplateComponent/TemplateComponent"; import {PROJECT_ID} from "@/common/js/constants"; +import MsJarConfig from "../../api/test/components/jar/JarConfig"; +import MsTableButton from "../../common/components/MsTableButton"; export default { name: "MsProject", components: { + MsTableButton, + MsJarConfig, TemplateComponent, ApiEnvironmentConfig, MsTableOperatorButton, @@ -206,6 +217,9 @@ export default { } }); }, + openJarConfig() { + this.$refs.jarConfig.open(); + }, handleDelete(project) { this.$refs.deleteConfirm.open(project); },