1.数据优先模板:代码生成器增加打包下载功能。 2.表单设计:历史版本列表中增加版本号

This commit is contained in:
suguangxu
2025-04-24 11:58:04 +08:00
parent bae3257764
commit 56ea74d365
4 changed files with 61 additions and 9 deletions

View File

@ -33,11 +33,16 @@
const { t } = useI18n();
const columns: BasicColumn[] = [
{
dataIndex: 'activityFlag',
title: t('版本'),
customRender: ({ record }) =>
`${record.activityFlag === 1 ? t('当前版本') : t('非当前版本')}`, //1-当前版本 0-非当前版本
dataIndex: 'activityFlag',
title: t('状态'),
customRender: ({ record }) =>
`${record.activityFlag === 1 ? t('当前版本') : t('非当前版本')}`, //1-当前版本 0-非当前版本
},
{
dataIndex: 'version',
title: t('版本'),
},
{
dataIndex: 'createUserName',
title: t('创建人'),