update 熟化库过账修改目的货位下拉框方法回退

This commit is contained in:
18110972313 2025-05-19 10:21:10 +08:00
parent aa40c4d414
commit 26c1e44b7d

View File

@ -135,6 +135,7 @@
<el-select <el-select
size="small" size="small"
filterable filterable
@change="changeLocW"
v-model="desParams.params.ERPLOCATION" v-model="desParams.params.ERPLOCATION"
placeholder="下拉选择仓库" placeholder="下拉选择仓库"
> >
@ -159,9 +160,9 @@
> >
<el-option <el-option
v-for="item in locDecList2" v-for="item in locDecList2"
:key="item.STORAGENAME" :key="item.VALUE"
:label="item.DESCRIPTION" :label="item.LABEL"
:value="item.STORAGENAME" :value="item.VALUE"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -215,7 +216,7 @@
import { getORG } from '@/api/auth' import { getORG } from '@/api/auth'
import { cals } from '@/utils/cal' import { cals } from '@/utils/cal'
import { getOpCode } from '@/api/opcode' import { getOpCode } from '@/api/opcode'
import request from '@/utils/request' // import request from '@/utils/request'
const { tableContainer, tableHeight, updateTableHeight, handleResize } = bTableHeight(330) const { tableContainer, tableHeight, updateTableHeight, handleResize } = bTableHeight(330)
const queryFormRef = ref(ElForm) const queryFormRef = ref(ElForm)
@ -427,8 +428,8 @@
updateTableHeight() updateTableHeight()
window.addEventListener('resize', handleResize) window.addEventListener('resize', handleResize)
StorageList() // StorageList()
getStorageSpecLocationList() // getStorageSpecLocationList()
}) })
function getRKey(row: any) { function getRKey(row: any) {
@ -575,7 +576,7 @@
function getlocDec(query: any) { function getlocDec(query: any) {
// console.log(query) // console.log(query)
let arr = state.locDecListAll.filter((item: any) => { let arr = state.locDecListAll.filter((item: any) => {
return item.STORAGENAME.includes(query) || item.STORAGENAME.includes(query) return item.LABEL.includes(query) || item.VALUE.includes(query)
}) })
// console.log(arr) // console.log(arr)
if (arr.length > 50) { if (arr.length > 50) {
@ -681,7 +682,7 @@
// state.loading2 = false // state.loading2 = false
state.Button_state = false state.Button_state = false
} }
/*
async function getStorageSpecLocationList() { async function getStorageSpecLocationList() {
let erpLocation = JSON.parse(localStorage.getItem('orgNo')); let erpLocation = JSON.parse(localStorage.getItem('orgNo'));
request({ request({
@ -695,7 +696,7 @@
state.locDecListAll = res.resultObj; state.locDecListAll = res.resultObj;
console.log(state.locDecList2) console.log(state.locDecList2)
}); });
} }*/
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">