diff --git a/src/views/basic/workplace/addBusTypeDialog.vue b/src/views/basic/workplace/addBusTypeDialog.vue
index 60d08971..b488dec4 100644
--- a/src/views/basic/workplace/addBusTypeDialog.vue
+++ b/src/views/basic/workplace/addBusTypeDialog.vue
@@ -164,14 +164,16 @@
@change="changeConsignee"
>
-
-
+
+
+
+
-
-
-
-
+
+
+
+
@@ -353,7 +355,7 @@ export default {
checkBatchInsert: 2,
number: 1,
shipper: 1,
- consignee: 1,
+ consignee: 5,
autoHandle: false,
},
invList: [],
@@ -608,22 +610,22 @@ export default {
this.formData.checkInsert = 1
this.formData.shipper = 3
} else {
- this.formData.consignee = 1
+ this.formData.consignee = 5
this.formData.shipper = 1
this.formData.checkInsert = 2
}
},
changeShipper() {
if (this.formData.shipper == 1) {
- this.formData.consignee = 1
+ this.formData.consignee = 5
} else {
- this.formData.consignee = 2
+ this.formData.consignee = 6
}
},
changeConsignee() {
- if (this.formData.consignee == 1) {
+ if (this.formData.consignee == 5) {
this.formData.shipper = 1
- } else if (this.formData.consignee == 2) {
+ } else if (this.formData.consignee == 6) {
this.formData.shipper = 2
}
}