18 lines
525 B
JavaScript
18 lines
525 B
JavaScript
export const formLabel = [
|
|
{
|
|
isShow: false, // 是否展示label
|
|
f_type: 'ipt',
|
|
f_label: '工器具名称',
|
|
f_model: 'toolName',
|
|
f_max: 32,
|
|
f_width: '250px',
|
|
},
|
|
]
|
|
|
|
export const columnsList = [
|
|
{ t_props: 'toolName', t_label: '工器具名称' },
|
|
{ t_props: 'model', t_label: '规格型号' },
|
|
{ t_props: 'unit', t_label: '单位' },
|
|
{ t_props: 'technicalParameters', t_label: '技术参数' },
|
|
{ t_props: 'mainFunction', t_label: '主要作用' },
|
|
] |