|
|
@@ -62,11 +62,16 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="选择区域" align="center" prop="wmsStoreAreaName">
|
|
|
+ <el-table-column
|
|
|
+ label="选择区域"
|
|
|
+ align="center"
|
|
|
+ width="150"
|
|
|
+ prop="wmsStoreAreaName"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
<AreaSelect
|
|
|
:ref="`area-${scope.$index}`"
|
|
|
- v-model="scope.row.wmsStoreAreaName"
|
|
|
+ v-model="scope.row.wmsStoreAreaId"
|
|
|
filterable
|
|
|
@change="
|
|
|
($event) => {
|
|
|
@@ -79,12 +84,13 @@
|
|
|
<el-table-column
|
|
|
label="选择货位"
|
|
|
align="center"
|
|
|
+ width="150"
|
|
|
prop="wmsStockLocationName"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<LocationSelect
|
|
|
:ref="`location-${scope.$index}`"
|
|
|
- v-model="scope.row.wmsStockLocationName"
|
|
|
+ v-model="scope.row.wmsStockLocationId"
|
|
|
filterable
|
|
|
@change="locationChange($event, scope.row)"
|
|
|
/>
|