|
|
@@ -3,7 +3,7 @@
|
|
|
<!-- 抽屉 -->
|
|
|
<el-drawer
|
|
|
title="发货管理"
|
|
|
- :visible.sync="showShipMnage"
|
|
|
+ :visible.sync="showShipManage"
|
|
|
size="440px"
|
|
|
:before-close="closeFn"
|
|
|
custom-class="ship-draw-wrap"
|
|
|
@@ -461,7 +461,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
// draw
|
|
|
- showShipMnage: false,
|
|
|
+ showShipManage: false,
|
|
|
shipData: [],
|
|
|
// dialog
|
|
|
// 打单信息
|
|
|
@@ -566,7 +566,7 @@ export default {
|
|
|
getDet() {
|
|
|
this.$service.single.orderSendDet({ id: this.orderData.id }).then(res => {
|
|
|
this.shipData = res;
|
|
|
- this.showShipMnage = true;
|
|
|
+ this.showShipManage = true;
|
|
|
});
|
|
|
},
|
|
|
// dialog
|
|
|
@@ -629,7 +629,7 @@ export default {
|
|
|
},
|
|
|
// draw
|
|
|
closeFn() {
|
|
|
- this.showShipMnage = false;
|
|
|
+ this.showShipManage = false;
|
|
|
},
|
|
|
// =========================
|
|
|
// 打单
|
|
|
@@ -643,7 +643,7 @@ export default {
|
|
|
|
|
|
this.$service.order.deliver({ id: this.orderData.id }).then(res => {
|
|
|
this.deliver.data = res;
|
|
|
- this.printOrder();
|
|
|
+ //this.printOrder();
|
|
|
});
|
|
|
},
|
|
|
// 填单
|
|
|
@@ -672,6 +672,7 @@ export default {
|
|
|
this.confirmSendVisit=false;
|
|
|
//操作栏置空
|
|
|
this.$set(this.orderData, 'status', '5');
|
|
|
+ this.$set(this.orderData, 'currentFlow', this.orderData.totalFlow);
|
|
|
});
|
|
|
},
|
|
|
// 订单分类
|