Browse Source

bug

master_hella_20240701
yufei0306 6 months ago
parent
commit
fb21b9b9b7
  1. 8
      src/views/wms/basicDataManage/strategySetting/strategy/supplieDeliveryStrategy/AddForm.vue

8
src/views/wms/basicDataManage/strategySetting/strategy/supplieDeliveryStrategy/AddForm.vue

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

Loading…
Cancel
Save