Compare commits

...

2 Commits

View File

@ -28,7 +28,7 @@
<el-table style="width: 100%;min-height:50px" @row-click="handle" :height="tableHeight" border v-loading="loading" :data="ShipList" highlight-current-row row-key="id">
<el-table-column prop="SHIPREQUESTNAME" label="发货单号" width="120"></el-table-column>
<el-table-column prop="ERPFACTORYDESC" label="发货组织" width="220"></el-table-column>
<el-table-column prop="ERPLOCATIONDES" label="发货货位" width="180">
<el-table-column prop="ERPLOCATIONDES" label="发货仓库" width="180">
<template #default="scope">
<el-select v-model="scope.row.ERPLOCATION" placeholder="选择仓库" style="width: 170px" default-first-option
@focus="getStorageSpec(scope.row.ERPLOCATION)" filterable>
@ -36,9 +36,9 @@
</el-select>
</template>
</el-table-column>
<el-table-column prop="ERPLOCATIONNAMEDES" label="发货位" width="180">
<el-table-column prop="ERPLOCATIONNAMEDES" label="发货位" width="180">
<template #default="scope">
<el-select v-model="scope.row.LOCATIONNAME" placeholder="选择位" style="width: 170px"
<el-select v-model="scope.row.LOCATIONNAME" placeholder="选择位" style="width: 170px"
@focus="getStorageSpec(scope.row.ERPLOCATION)" default-first-option filterable
:filter-method="locatioNFilter">
<el-option v-for="item in state.LocationList" :key="item.VALUE" :label="item.LABEL"