From 2a0e6010b954fa8fa02757d4a8ab5e09231e8e78 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 2 Dec 2024 14:53:26 +0800 Subject: [PATCH] =?UTF-8?q?12/2=20=E5=8D=95=E6=8D=AE=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=8F=91=E8=B4=A7=E6=96=B9=20=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E6=96=B9=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/workplace/addBusTypeDialog.vue | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) 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 } }