This commit is contained in:
xiaojunnuo
2026-05-31 06:09:35 +08:00
parent 81d6289a86
commit 2960e2459b
2 changed files with 7 additions and 8 deletions
@@ -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: {
@@ -134,6 +134,5 @@ export class MainConfiguration {
});
logger.info("当前环境:", this.app.getEnv()); // prod
}
}