From a88c7af46956b8807d090faaa4f179e9b3c5c0fd Mon Sep 17 00:00:00 2001
From: fengachen <373943794@qq.com>
Date: Thu, 21 Oct 2021 18:54:47 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90bug=E3=80=91=20=E4=B8=8D=E9=9C=80?=
=?UTF-8?q?=E8=A6=81=E5=8F=91=E7=A5=A8=E4=B8=8D=E6=98=BE=E7=A4=BA=E9=82=AE?=
=?UTF-8?q?=E5=AF=84=E4=BF=A1=E6=81=AF=20=E4=B8=8A=E4=BC=A0=E5=87=AD?=
=?UTF-8?q?=E8=AF=81=E9=A9=B3=E5=9B=9E=E9=A9=B3=E5=9B=9E=E5=8E=9F=E5=9B=A0?=
=?UTF-8?q?=E5=BF=85=E5=A1=AB?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../meetManage/OtherMeetingForm.vue | 17 ++++++++-
.../meetManage/SignUpInfoDetail.vue | 38 ++++++++++---------
.../meetManage/modules/AuditModal.vue | 2 +-
3 files changed, 38 insertions(+), 19 deletions(-)
diff --git a/src/views/incomePayments/meetManage/OtherMeetingForm.vue b/src/views/incomePayments/meetManage/OtherMeetingForm.vue
index bb78d1a..51b0d91 100644
--- a/src/views/incomePayments/meetManage/OtherMeetingForm.vue
+++ b/src/views/incomePayments/meetManage/OtherMeetingForm.vue
@@ -46,6 +46,7 @@
@@ -71,7 +72,7 @@
-
+
邮寄信息
@@ -203,6 +204,8 @@ export default {
},
// 是否可编辑
isEditBool:false,
+ // 是否需要发票
+ needInvoiceBool:false,
}
},
watch: {
@@ -280,6 +283,7 @@ export default {
* */
setFormVal(record) {
this.isEditBool = record.checkResult === 1
+ this.needInvoiceBool = record.needInvoice === 0
// 回显邮寄联系人
this.selectPostPerson = {
id: record.postContactTemporaryId,
@@ -304,6 +308,17 @@ export default {
})
+ },
+ /*
+ * 选择发票
+ * */
+ changeInvoice(val){
+ if(val === '0'){
+ // 不需要发票
+ this.needInvoiceBool = true
+ }else {
+ this.needInvoiceBool = false
+ }
},
addContactsOk() {
}
diff --git a/src/views/incomePayments/meetManage/SignUpInfoDetail.vue b/src/views/incomePayments/meetManage/SignUpInfoDetail.vue
index 1dc4b4f..045fee8 100644
--- a/src/views/incomePayments/meetManage/SignUpInfoDetail.vue
+++ b/src/views/incomePayments/meetManage/SignUpInfoDetail.vue
@@ -46,8 +46,9 @@
+
-
+
缴费信息
@@ -62,9 +63,9 @@
-
+
-
+
邮寄信息
@@ -143,10 +144,13 @@
{{ model.speechTopic }}
-
+
+
-
-
+
+
@@ -200,17 +204,17 @@
{{ model.pickUp_dictText }}
-
-
- {{ model.arrivalTime }}
-
-
- {{ model.destination }}
-
-
- {{ model.arrivalShift }}
-
-
+
+
+ {{ model.arrivalTime }}
+
+
+ {{ model.destination }}
+
+
+ {{ model.arrivalShift }}
+
+
{{ model.deliveryStation_dictText }}
diff --git a/src/views/incomePayments/meetManage/modules/AuditModal.vue b/src/views/incomePayments/meetManage/modules/AuditModal.vue
index 26f6cab..e7595b5 100644
--- a/src/views/incomePayments/meetManage/modules/AuditModal.vue
+++ b/src/views/incomePayments/meetManage/modules/AuditModal.vue
@@ -265,7 +265,7 @@ export default {
// 审核结果选择拒绝 审核说明必填
if(e.target.value === '1'){
this.checkBool = false
- }else if(e.target.value === '0'){
+ }else if(e.target.value === '2'){
this.checkBool = true
}
},