|
|
@@ -44,7 +44,7 @@
|
|
|
<el-form-item label="客户地址:" prop="receiveAddress">
|
|
|
<el-input v-model="form.receiveAddress" disabled></el-input>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
+
|
|
|
<el-form-item label="车牌号:" prop="carNo">
|
|
|
<el-input v-model="form.carNo" disabled></el-input>
|
|
|
</el-form-item>
|
|
|
@@ -272,20 +272,24 @@
|
|
|
});
|
|
|
this.form = data;
|
|
|
this.detailData = data;
|
|
|
- console.log(data.productList,'data.productList')
|
|
|
- this.$refs.inventoryTableDetailsRef &&
|
|
|
- this.$refs.inventoryTableDetailsRef.putTableValue(data.productList);
|
|
|
- this.$refs.taskInfoTableRef &&
|
|
|
- this.$refs.taskInfoTableRef.putTableValue(
|
|
|
- data.logisticTrakListNoteVOList
|
|
|
- );
|
|
|
- this.$refs.stowageTableRef &&
|
|
|
- this.$refs.stowageTableRef.putTableValue(data.carList);
|
|
|
- this.$refs.palletTableRef &&
|
|
|
- this.$refs.palletTableRef.putTableValue(data.trayList);
|
|
|
- this.form.pricingWay = data?.saleOrder?.pricingWay;
|
|
|
- this.$refs.replaceRef &&
|
|
|
- this.$refs.replaceRef.putTableValue(data.replaceList);
|
|
|
+ console.log(data.productList, 'data.productList');
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.inventoryTableDetailsRef &&
|
|
|
+ this.$refs.inventoryTableDetailsRef.putTableValue(
|
|
|
+ data.productList
|
|
|
+ );
|
|
|
+ this.$refs.taskInfoTableRef &&
|
|
|
+ this.$refs.taskInfoTableRef.putTableValue(
|
|
|
+ data.logisticTrakListNoteVOList
|
|
|
+ );
|
|
|
+ this.$refs.stowageTableRef &&
|
|
|
+ this.$refs.stowageTableRef.putTableValue(data.carList);
|
|
|
+ this.$refs.palletTableRef &&
|
|
|
+ this.$refs.palletTableRef.putTableValue(data.trayList);
|
|
|
+ this.form.pricingWay = data?.saleOrder?.pricingWay;
|
|
|
+ this.$refs.replaceRef &&
|
|
|
+ this.$refs.replaceRef.putTableValue(data.replaceList);
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
}
|