26 lines
921 B
JavaScript
26 lines
921 B
JavaScript
export const formLabel = [
|
|
{
|
|
f_label: '所属公司',
|
|
f_model: 'departName',
|
|
f_type: 'ipt',
|
|
isShow: false,
|
|
},
|
|
{ f_label: '搜索关键词', f_model: 'proName', f_type: 'ipt', isShow: false },
|
|
{ f_label: '项目状态', f_model: 'relUser', f_type: 'ipt', isShow: false },
|
|
]
|
|
export const columnsList = [
|
|
{ t_props: 'projectName', t_label: '项目名称' },
|
|
{ t_props: 'address', t_label: '项目地址' },
|
|
{ t_props: 'planStartTime', t_label: '计划开工日期' },
|
|
{ t_props: 'planEndTime', t_label: '计划竣工日期' },
|
|
{ t_props: 'ownerUnit', t_label: '业主单位' },
|
|
{ t_props: 'projectStatus', t_label: '项目状态', t_slot: 'status' },
|
|
{ t_props: 'auditStatus', t_label: '标段工程数量', t_slot: 'auditStatus' },
|
|
]
|
|
|
|
export const dialogConfig = {
|
|
outerWidth: '50%',
|
|
outerTitle: '新建项目',
|
|
outerVisible: false,
|
|
}
|