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