smart_archives_web/src/views/archivesManagement/archClass/archClassification/config.js

17 lines
502 B
JavaScript
Raw Normal View History

2025-09-12 10:06:44 +08:00
export const formLabel = [
{
isShow: false, // 是否展示label
f_type: 'ipt',
f_label: '分类名称',
2025-09-12 11:03:02 +08:00
f_model: 'classifyName',
2025-09-12 10:06:44 +08:00
f_max: 32,
},
]
export const columnsList = [
2025-09-12 11:03:02 +08:00
{ t_props: 'classifyName', t_label: '分类名称' },
{ t_props: 'dimension', t_label: '维度' },
{ t_props: 'updateUserName', t_label: '更新人' },
{ t_props: 'updateTime', t_label: '更新时间' },
{ t_props: 'classifyDesc', t_label: '分类描述' }
2025-09-12 10:06:44 +08:00
]