|
@ -81,6 +81,7 @@ |
|
|
oldSkipCountLocation |
|
|
oldSkipCountLocation |
|
|
)" |
|
|
)" |
|
|
@tableButtonClick="addFormData(arguments)" |
|
|
@tableButtonClick="addFormData(arguments)" |
|
|
|
|
|
@filterColumnChange="filterColumnChange" |
|
|
></searchPage> |
|
|
></searchPage> |
|
|
<!-- @filterBtnClickHandle="filterBtnClickHandle" --> |
|
|
<!-- @filterBtnClickHandle="filterBtnClickHandle" --> |
|
|
<!-- 其他参数 --> |
|
|
<!-- 其他参数 --> |
|
@ -391,7 +392,7 @@ export default { |
|
|
label: '不等于' |
|
|
label: '不等于' |
|
|
}, { |
|
|
}, { |
|
|
value: 'In', |
|
|
value: 'In', |
|
|
label: '包含', |
|
|
label: '存在', |
|
|
notShow:true |
|
|
notShow:true |
|
|
}], |
|
|
}], |
|
|
// 用户筛选暂存(如果筛选是code:value值为数组的格式) |
|
|
// 用户筛选暂存(如果筛选是code:value值为数组的格式) |
|
@ -404,6 +405,44 @@ export default { |
|
|
this.session = JSON.parse(JSON.stringify(this.CreateFormData)); |
|
|
this.session = JSON.parse(JSON.stringify(this.CreateFormData)); |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
filterColumnChange(item){ |
|
|
|
|
|
if(item.column == "code"){ |
|
|
|
|
|
this.filterActionOptions=[{ |
|
|
|
|
|
value: '==', |
|
|
|
|
|
label: '等于' |
|
|
|
|
|
}, { |
|
|
|
|
|
value: '!=', |
|
|
|
|
|
label: '不等于' |
|
|
|
|
|
}, { |
|
|
|
|
|
value: 'In', |
|
|
|
|
|
label: '含有', |
|
|
|
|
|
notShow:true |
|
|
|
|
|
},{ |
|
|
|
|
|
value: 'Like', |
|
|
|
|
|
label: '包含' |
|
|
|
|
|
}] |
|
|
|
|
|
this.$nextTick(()=>{ |
|
|
|
|
|
this.$forceUpdate() |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
else if(item.column == "type"){ |
|
|
|
|
|
this.filterActionOptions=[{ |
|
|
|
|
|
value: '==', |
|
|
|
|
|
label: '等于' |
|
|
|
|
|
}, { |
|
|
|
|
|
value: '!=', |
|
|
|
|
|
label: '不等于' |
|
|
|
|
|
},{ |
|
|
|
|
|
value: 'In', |
|
|
|
|
|
label: '含有', |
|
|
|
|
|
notShow:true |
|
|
|
|
|
}] |
|
|
|
|
|
this.$nextTick(()=>{ |
|
|
|
|
|
this.$forceUpdate() |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
if(item.action == "Like"){item.action = '=='} |
|
|
|
|
|
}, |
|
|
// 初始化库位筛选列表数据,目的:pda的库位类型不可以选择线边库位 |
|
|
// 初始化库位筛选列表数据,目的:pda的库位类型不可以选择线边库位 |
|
|
initSearchPageTableColums(){ |
|
|
initSearchPageTableColums(){ |
|
|
// let _list = JSON.parse(JSON.stringify(this.$isTableColumns.Location)); |
|
|
// let _list = JSON.parse(JSON.stringify(this.$isTableColumns.Location)); |
|
|