export const config = { handleColShow: true, // 是否显示操作列 pageShow: true, // 是否显示分页组件 isSelShow: true,// 表格是否需要复选框 isFormShow: true, // 是否显示表单查询组件 handleWidth: '160px', // 操作列宽度 formLabel: [ { f_label: '关键字', f_model: 'keywords', f_type: 'ipt' }, { f_label: '单位名称', f_model: 'backUnit', f_type: 'sel', f_selList: [] }, { f_label: '工程名称', f_model: 'backPro', f_type: 'sel', f_selList: [] }, { f_label: '工机具类型', f_model: 'type', f_type: 'selCas', f_selList: [], optionProps: { value: 'id', } }, { f_label: '维修单号', f_model: 'laiyuan', f_type: 'ipt', }, { f_label: '审批状态', f_model: 'taskStatus', f_type: 'sel', f_selList: [] }, { f_label: '报废类型', f_model: 'taskStatus', f_type: 'sel', f_selList: [] }, { f_label: '创建时间', f_model: 'time', f_type: 'date' }, ], columnsList: [ { t_width: '55px', t_props: '', t_label: '序号' }, { t_props: 'scrapNum', t_label: '报废单号' }, { t_props: 'scrapSource', t_label: '报废来源', t_slot: 'source' }, { t_props: 'repairNum', t_label: '预报废单号' }, { t_props: 'unitName', t_label: '退料单位名称' }, { t_props: 'projectName', t_label: '退料工程名称' }, { t_props: 'itemType', t_label: '机具类型' }, { t_props: 'createBy', t_label: '任务创建人' }, { t_props: 'createTime', t_label: '任务创建时间' }, { t_props: '', t_label: '审核状态', t_slot: 'type' }, ], } export const dialogConfig = { outerWidth: '70%', outerTitle: '', outerVisible: false, innerWidth: '50%', innerTitle: '', innerVisible: false, handleColShow: false, // 是否显示操作列 pageShow: false, // 是否显示分页组件 isSelShow: false,// 表格是否需要复选框 isFormShow: true, // 是否显示表单查询组件 formLabel: [ { f_label: '类型名称', f_model: 'keywords', f_type: 'ipt' }, ], columnsList: [ { t_width: '55px', t_props: '', t_label: '序号' }, { t_props: 'machineTypeName', t_label: '设备类型' }, { t_props: 'specificationType', t_label: '规格型号' }, { t_props: 'maCode', t_label: '设备编码' }, { t_props: 'scrapNum', t_label: '设备数量' }, { t_props: 'remark', t_label: '报废原因' }, { t_props: 'fileUrl', t_label: '报废图片' }, ], }