25 lines
868 B
JavaScript
25 lines
868 B
JavaScript
|
|
|
||
|
|
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: '设备编码' },
|
||
|
|
{ t_width: '', t_props: 'modelName', t_label: '入库人' },
|
||
|
|
{ t_width: '', t_props: 'createDate', t_label: '入库日期' },
|
||
|
|
],
|
||
|
|
|
||
|
|
}
|
||
|
|
|