|
|
|
|
@ -50,6 +50,44 @@ export default { |
|
|
|
|
columnBtn: false, |
|
|
|
|
searchMenuPosition: "right", |
|
|
|
|
column: [ |
|
|
|
|
{ |
|
|
|
|
label: "年份", |
|
|
|
|
prop: "year", |
|
|
|
|
search: true, |
|
|
|
|
headerAlign: "center", |
|
|
|
|
align: "center", |
|
|
|
|
hide: true, |
|
|
|
|
type:'year', |
|
|
|
|
valueFormat: "yyyy", |
|
|
|
|
format: "yyyy", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "季度", |
|
|
|
|
prop: "quarter", |
|
|
|
|
search: true, |
|
|
|
|
headerAlign: "center", |
|
|
|
|
align: "center", |
|
|
|
|
type: "select", |
|
|
|
|
dicData:[ |
|
|
|
|
{ |
|
|
|
|
label:'第一季度', |
|
|
|
|
value:'1' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label:'第二季度', |
|
|
|
|
value:'2' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label:'第三季度', |
|
|
|
|
value:'3' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label:'第四季度', |
|
|
|
|
value:'4' |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
hide: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "需求单号", |
|
|
|
|
prop: "demandNo", |
|
|
|
|
@ -71,12 +109,14 @@ export default { |
|
|
|
|
prop: "materialName", |
|
|
|
|
headerAlign: "center", |
|
|
|
|
align: "center", |
|
|
|
|
search:true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "型号", |
|
|
|
|
prop: "model", |
|
|
|
|
headerAlign: "center", |
|
|
|
|
align: "center", |
|
|
|
|
seaarch:true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "数量", |
|
|
|
|
@ -101,6 +141,16 @@ export default { |
|
|
|
|
prop: "department", |
|
|
|
|
headerAlign: "center", |
|
|
|
|
align: "center", |
|
|
|
|
type: "select", |
|
|
|
|
search:true, |
|
|
|
|
filterable: true, |
|
|
|
|
dicUrl:'/smartpark/department/getOnePutDepartment', |
|
|
|
|
props:{ |
|
|
|
|
label: 'department', |
|
|
|
|
value: 'departmentId', |
|
|
|
|
res: 'result' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
|