From 2960e2459bd6939424045a54dcd9b57523c26666 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Sun, 31 May 2026 06:09:35 +0800 Subject: [PATCH] chore: 1 --- .../src/views/sys/suite/activation-code/crud.tsx | 14 +++++++------- packages/ui/certd-server/src/configuration.ts | 1 - 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/packages/ui/certd-client/src/views/sys/suite/activation-code/crud.tsx b/packages/ui/certd-client/src/views/sys/suite/activation-code/crud.tsx index b429d8062..a5902f0e6 100644 --- a/packages/ui/certd-client/src/views/sys/suite/activation-code/crud.tsx +++ b/packages/ui/certd-client/src/views/sys/suite/activation-code/crud.tsx @@ -275,15 +275,15 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat }, code: { title: "激活码", - type: "copyable", - search: { show: true }, + type: ["text", "copyable"], + search: { show: true, col: { span: 3 } }, column: { width: 300 }, }, productId: { title: "绑定套餐", type: "dict-select", dict: productDict, - search: { show: true }, + search: { show: true, col: { span: 3 } }, column: { width: 150 }, }, duration: { @@ -294,21 +294,21 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat batchNo: { title: "批次号", type: "text", - search: { show: true }, + search: { show: true, col: { span: 3 } }, column: { width: 180 }, }, status: { title: "状态", type: "dict-select", dict: statusDict, - search: { show: true }, + search: { show: true, col: { span: 3 } }, column: { width: 100, align: "center" }, }, usedUserId: { title: "使用用户", type: "table-select", dict: userDict, - search: { show: true }, + search: { show: true, col: { span: 3 } }, column: { width: 140 }, form: { show: false, @@ -336,7 +336,7 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat { label: "已导出", value: true, color: "warning" }, ], }), - search: { show: true }, + search: { show: true, col: { span: 3 } }, column: { width: 110, align: "center" }, }, exportTime: { diff --git a/packages/ui/certd-server/src/configuration.ts b/packages/ui/certd-server/src/configuration.ts index f24c45feb..8eaaef70c 100644 --- a/packages/ui/certd-server/src/configuration.ts +++ b/packages/ui/certd-server/src/configuration.ts @@ -134,6 +134,5 @@ export class MainConfiguration { }); logger.info("当前环境:", this.app.getEnv()); // prod - } }