From 97dfe869ded0234567a2ec3e22570d9f77e3d481 Mon Sep 17 00:00:00 2001 From: v_hwweng Date: Fri, 13 Sep 2024 16:58:42 +0800 Subject: [PATCH 1/3] =?UTF-8?q?bug:=E4=B8=8A=E6=9E=B6=E6=B5=81=E6=B0=B4?= =?UTF-8?q?=E7=BA=BF=E6=A8=A1=E6=9D=BF=E5=88=B0=E7=A0=94=E5=8F=91=E5=95=86?= =?UTF-8?q?=E5=BA=97=EF=BC=8C=E4=BD=86=E6=98=AF=E6=96=B0=E5=BB=BA=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=BA=BF=E7=9A=84=E6=97=B6=E5=80=99=E5=9C=A8=E2=80=9C?= =?UTF-8?q?=E7=A0=94=E5=8F=91=E5=95=86=E5=BA=97=E2=80=9DTab=E6=90=9C?= =?UTF-8?q?=E4=B8=8D=E5=87=BA=E6=9D=A5=20#10865=20#=20Reviewed,=20transact?= =?UTF-8?q?ion=20id:=2018413?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/devops-pipeline/src/views/CreatePipeline.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/frontend/devops-pipeline/src/views/CreatePipeline.vue b/src/frontend/devops-pipeline/src/views/CreatePipeline.vue index 2481e6a4908..242f85f9cee 100644 --- a/src/frontend/devops-pipeline/src/views/CreatePipeline.vue +++ b/src/frontend/devops-pipeline/src/views/CreatePipeline.vue @@ -386,6 +386,11 @@ }, []) console.log(this.applySettings) } + }, + searchName (val) { + if (this.activePanel === 'store') { + this.requestMarkTemplates(true) + } } }, created () { @@ -436,7 +441,8 @@ const param = { page: this.page, pageSize: this.pageSize, - projectCode: this.$route.params.projectId + projectCode: this.$route.params.projectId, + keyword: this.searchName } this.requestStoreTemplate(param).then((res) => { this.page++ From 10c1220d3b2b775ee50dbd4b615031dd5864787f Mon Sep 17 00:00:00 2001 From: v_hwweng Date: Fri, 13 Sep 2024 17:09:18 +0800 Subject: [PATCH 2/3] =?UTF-8?q?bug:=E4=B8=8A=E6=9E=B6=E6=B5=81=E6=B0=B4?= =?UTF-8?q?=E7=BA=BF=E6=A8=A1=E6=9D=BF=E5=88=B0=E7=A0=94=E5=8F=91=E5=95=86?= =?UTF-8?q?=E5=BA=97=EF=BC=8C=E4=BD=86=E6=98=AF=E6=96=B0=E5=BB=BA=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=BA=BF=E7=9A=84=E6=97=B6=E5=80=99=E5=9C=A8=E2=80=9C?= =?UTF-8?q?=E7=A0=94=E5=8F=91=E5=95=86=E5=BA=97=E2=80=9DTab=E6=90=9C?= =?UTF-8?q?=E4=B8=8D=E5=87=BA=E6=9D=A5=20#10865?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/locale/pipeline/zh-CN.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/frontend/locale/pipeline/zh-CN.json b/src/frontend/locale/pipeline/zh-CN.json index 418e0cb6008..08335eb3f54 100644 --- a/src/frontend/locale/pipeline/zh-CN.json +++ b/src/frontend/locale/pipeline/zh-CN.json @@ -731,6 +731,7 @@ "name": "产出物名称", "filePath": "文件路径", "size": "文件大小", + "created": "创建时间", "lastModified": "最后修改时间", "pipelineErrorGuide": "流水线故障排查指南", "pipelineErrorType": "错误类型", @@ -1024,7 +1025,8 @@ "timerTriggerCodelibTips": "- Git 仓库,分支非必填,缺省时为默认分支\n- SVN 仓库,分支必填,为仓库根路径下的一级子目录", "timerTriggerBranchTips": "若多个分支均有变更,满足条件时每个分支将触发一次", "filePathTips": "请填写自定义仓库目录,如/a", - "fileNameTips": "文件名,留空则自动读取" + "fileNameTips": "文件名,留空则自动读取", + "enableDocker": "启用 Docker 运行构建任务" }, "storeMap": { "textarea": "文本框", From 1c9dcd51418bdaeee53cac4f3a32622be06011ff Mon Sep 17 00:00:00 2001 From: v_hwweng Date: Fri, 13 Sep 2024 17:10:40 +0800 Subject: [PATCH 3/3] =?UTF-8?q?bug:=E4=B8=8A=E6=9E=B6=E6=B5=81=E6=B0=B4?= =?UTF-8?q?=E7=BA=BF=E6=A8=A1=E6=9D=BF=E5=88=B0=E7=A0=94=E5=8F=91=E5=95=86?= =?UTF-8?q?=E5=BA=97=EF=BC=8C=E4=BD=86=E6=98=AF=E6=96=B0=E5=BB=BA=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=BA=BF=E7=9A=84=E6=97=B6=E5=80=99=E5=9C=A8=E2=80=9C?= =?UTF-8?q?=E7=A0=94=E5=8F=91=E5=95=86=E5=BA=97=E2=80=9DTab=E6=90=9C?= =?UTF-8?q?=E4=B8=8D=E5=87=BA=E6=9D=A5=20#10865?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/locale/pipeline/zh-CN.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/frontend/locale/pipeline/zh-CN.json b/src/frontend/locale/pipeline/zh-CN.json index 08335eb3f54..1d3724cd1c1 100644 --- a/src/frontend/locale/pipeline/zh-CN.json +++ b/src/frontend/locale/pipeline/zh-CN.json @@ -1025,8 +1025,7 @@ "timerTriggerCodelibTips": "- Git 仓库,分支非必填,缺省时为默认分支\n- SVN 仓库,分支必填,为仓库根路径下的一级子目录", "timerTriggerBranchTips": "若多个分支均有变更,满足条件时每个分支将触发一次", "filePathTips": "请填写自定义仓库目录,如/a", - "fileNameTips": "文件名,留空则自动读取", - "enableDocker": "启用 Docker 运行构建任务" + "fileNameTips": "文件名,留空则自动读取" }, "storeMap": { "textarea": "文本框",