2024-05-28 16:54:30 +08:00
|
|
|
|
|
|
|
|
export const dialogConfig = {
|
|
|
|
|
outerWidth: '70%',
|
|
|
|
|
outerTitle: '查看',
|
|
|
|
|
outerVisible: false,
|
|
|
|
|
handleColShow: false, // 是否显示操作列
|
|
|
|
|
pageShow: true, // 是否显示分页组件
|
|
|
|
|
isSelShow: false,// 表格是否需要复选框
|
|
|
|
|
isFormShow: true, // 是否显示表单查询组件
|
|
|
|
|
formLabel: [
|
|
|
|
|
{ f_label: '关键字', f_model: 'keyWord', f_type: 'ipt', },
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
columnsList: [
|
|
|
|
|
{ t_width: '', t_props: 'putInType', t_label: '入库来源' },
|
|
|
|
|
{ t_width: '', t_props: 'typeName', t_label: '设备类型' },
|
|
|
|
|
{ t_width: '', t_props: 'typeModelName', t_label: '规格型号' },
|
|
|
|
|
{ t_width: '', t_props: 'maCode', t_label: '设备编码' },
|
2024-05-28 18:42:17 +08:00
|
|
|
{ t_width: '', t_props: 'num', t_label: '设备数量' },
|
2024-05-28 16:54:30 +08:00
|
|
|
{ t_width: '', t_props: 'modelName', t_label: '入库人' },
|
|
|
|
|
{ t_width: '', t_props: 'createDate', t_label: '入库日期' },
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|