|
|
@ -558,10 +558,18 @@ const importSuccess = () => { |
|
|
|
|
|
|
|
// 筛选提交 |
|
|
|
const searchFormClick = (searchData) => { |
|
|
|
tableObject.params = { |
|
|
|
isSearch: true, |
|
|
|
filters: searchData.filters |
|
|
|
tableObject.params.isSearch = true |
|
|
|
let filters = [...searchData.filters] |
|
|
|
if ( routeName.value == 'DeliverRequestMain') { |
|
|
|
filters = [...filters,{ |
|
|
|
businessType: 'Deliver' |
|
|
|
}] |
|
|
|
} else if ( routeName.value == 'ZZBJDeliverRequestMain') { |
|
|
|
filters = [...filters,{ |
|
|
|
businessType: 'ZZBJDeliver' |
|
|
|
}] |
|
|
|
} |
|
|
|
tableObject.params.filters = filters |
|
|
|
getList() // 刷新当前列表 |
|
|
|
} |
|
|
|
|
|
|
|