From 6d9ef26ecab71d752c2c55d75aed4fb5f6c05a39 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Thu, 31 Oct 2024 18:04:51 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E5=A2=9E=E5=8A=A0=E5=90=91=E5=AF=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/certd/cname/record/crud.tsx | 12 ++ .../src/views/certd/cname/record/index.vue | 7 +- .../src/views/certd/pipeline/detail.vue | 172 +++++++++++------- .../views/certd/pipeline/pipeline/index.vue | 6 +- .../views/framework/home/dashboard/index.vue | 13 +- .../src/views/sys/cname/provider/index.vue | 2 +- 6 files changed, 140 insertions(+), 72 deletions(-) diff --git a/packages/ui/certd-client/src/views/certd/cname/record/crud.tsx b/packages/ui/certd-client/src/views/certd/cname/record/crud.tsx index f2f78c63..a19fe246 100644 --- a/packages/ui/certd-client/src/views/certd/cname/record/crud.tsx +++ b/packages/ui/certd-client/src/views/certd/cname/record/crud.tsx @@ -132,6 +132,18 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat } } } + }, + helper: { + render() { + const closeForm = () => { + crudExpose.getFormWrapperRef().close(); + }; + return ( + + 前往设置CNAME服务 + + ); + } } }, column: { diff --git a/packages/ui/certd-client/src/views/certd/cname/record/index.vue b/packages/ui/certd-client/src/views/certd/cname/record/index.vue index af547f1a..67401e8a 100644 --- a/packages/ui/certd-client/src/views/certd/cname/record/index.vue +++ b/packages/ui/certd-client/src/views/certd/cname/record/index.vue @@ -1,7 +1,12 @@