|
|
@ -416,18 +416,18 @@ const filterMethodFromLocation = (query: string) => { |
|
|
|
return item?.code.includes(query) |
|
|
|
}) |
|
|
|
} else { |
|
|
|
options.locationList = options.originLocationList |
|
|
|
options.locationList = [...options.originLocationList] |
|
|
|
} |
|
|
|
} |
|
|
|
// 获取库位列表 |
|
|
|
const getFormLocationList = async () => { |
|
|
|
if(!options.locationList || options.locationList.length==0){ |
|
|
|
options.locationList = await getLocationList({ type: 'TRANSPORT' }) |
|
|
|
options.originLocationList = [...options.locationList] |
|
|
|
options.originLocationList = await getLocationList({ type: 'TRANSPORT' }) |
|
|
|
options.locationList = [...options.originLocationList] |
|
|
|
}else{ |
|
|
|
options.locationList = [] |
|
|
|
let timer = setTimeout(()=>{ |
|
|
|
options.locationList = options.originLocationList |
|
|
|
options.locationList = [...options.originLocationList] |
|
|
|
if(timer){ |
|
|
|
clearTimeout(timer) |
|
|
|
} |
|
|
|