Browse Source

解决出入业务-生产出入-生产入库数据对话框中表单数据不回显

乐菲 2 months ago
parent
commit
82f765144e

+ 9 - 3
src/views/wms/incoming/productionWarehousing/components/ProductWareHousingPlan.vue

@@ -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)"
           />