From 56a36aa59545333a137d4033526e4adc193dde25 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Sun, 13 Jul 2025 23:20:04 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E4=BF=AE=E5=A4=8D=E5=95=86=E4=B8=9A?= =?UTF-8?q?=E7=89=88=E7=BF=BB=E8=AF=91=E5=AF=BC=E8=87=B4=E6=8A=A5=E9=94=99?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ui/certd-client/src/views/sys/authority/user/crud.tsx | 4 ++-- .../ui/certd-client/src/views/sys/suite/product/crud.tsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/ui/certd-client/src/views/sys/authority/user/crud.tsx b/packages/ui/certd-client/src/views/sys/authority/user/crud.tsx index e033b2d1..f26b1376 100644 --- a/packages/ui/certd-client/src/views/sys/authority/user/crud.tsx +++ b/packages/ui/certd-client/src/views/sys/authority/user/crud.tsx @@ -207,8 +207,8 @@ export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOpti type: "dict-switch", dict: dict({ data: [ - { label: t("certd.enabled"), value: 1, color: "green" }, - { label: t("certd.disabled"), value: 0, color: "red" }, + { label: t("common.enabled"), value: 1, color: "green" }, + { label: t("common.disabled"), value: 0, color: "red" }, ], }), column: { diff --git a/packages/ui/certd-client/src/views/sys/suite/product/crud.tsx b/packages/ui/certd-client/src/views/sys/suite/product/crud.tsx index fa83578f..6492c19b 100644 --- a/packages/ui/certd-client/src/views/sys/suite/product/crud.tsx +++ b/packages/ui/certd-client/src/views/sys/suite/product/crud.tsx @@ -55,15 +55,15 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat groups: { base: { header: t("certd.basicInfo"), - columns: [t("certd.titlea"), t("certd.type"), t("certd.disabled"), t("certd.ordera"), t("certd.supportBuy"), t("certd.intro")], + columns: ["title", "type", "disabled", "order", "supportBuy", "intro"] }, content: { header: t("certd.packageContent"), - columns: [t("certd.maxDomainCount"), t("certd.maxPipelineCount"), t("certd.maxDeployCount"), t("certd.maxMonitorCount")], + columns: ["content.maxDomainCount", "content.maxPipelineCount", "content.maxDeployCount", "content.maxMonitorCount"] }, price: { header: t("certd.price"), - columns: [t("certd.durationPrices")], + columns: ["durationPrices"] }, }, },