2024-09-12 17:39:02 +08:00
|
|
|
export const formLabel = [
|
|
|
|
|
{ f_label: '关键字', f_model: 'keyWord', f_type: 'ipt' },
|
|
|
|
|
{ f_label: '班组名称', f_model: 'teamName', f_type: 'ipt' },
|
|
|
|
|
{ f_label: '班组长', f_model: 'relName', f_type: 'ipt' },
|
|
|
|
|
]
|
|
|
|
|
export const columnsList = [
|
|
|
|
|
{ t_props: 'teamName', t_label: '班组名称', },
|
|
|
|
|
{ t_props: 'proName', t_label: '所属工程', },
|
2024-09-18 15:57:17 +08:00
|
|
|
{ t_props: 'relName', t_label: '班组长', t_slot: 'relName' },
|
2024-09-12 17:39:02 +08:00
|
|
|
{ t_props: 'peopleCount', t_label: '班组成员', t_slot: 'peopleCount' },
|
|
|
|
|
{ t_props: 'teamStatus', t_label: '班组状态', t_slot: 'teamStatus' },
|
|
|
|
|
{ t_props: 'createTime', t_label: '创建日期', },
|
|
|
|
|
{ t_props: 'jsTime', t_label: '解散日期', },
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export const dialogConfig = {
|
|
|
|
|
outerWidth: '60%',
|
|
|
|
|
outerTitle: '',
|
|
|
|
|
outerVisible: false,
|
|
|
|
|
}
|