From fb2aa0f6a67a0852197c19e86b664f2166d1f275 Mon Sep 17 00:00:00 2001
From: fengachen <373943794@qq.com>
Date: Fri, 22 Oct 2021 16:44:11 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90bug=E3=80=91=E6=8A=A5=E5=90=8D?=
=?UTF-8?q?=E5=AD=97=E6=AE=B5=E4=B8=8E=E8=AF=A6=E6=83=85=E5=AD=97=E6=AE=B5?=
=?UTF-8?q?=E6=98=BE=E7=A4=BA=E4=B8=8D=E7=BB=9F=E4=B8=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../incomePayments/meetManage/SignUpInfoDetail.vue | 10 ++++++----
src/views/incomePayments/meetManage/SignUpInfoEdit.vue | 8 +++++++-
2 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/src/views/incomePayments/meetManage/SignUpInfoDetail.vue b/src/views/incomePayments/meetManage/SignUpInfoDetail.vue
index 045fee8..6eec644 100644
--- a/src/views/incomePayments/meetManage/SignUpInfoDetail.vue
+++ b/src/views/incomePayments/meetManage/SignUpInfoDetail.vue
@@ -36,10 +36,11 @@
{{ model.checkInHotel_dictText }}
-
+
+
{{ model.arrivalTime }}
-
+
{{ model.departureTime }}
@@ -54,7 +55,8 @@
{{ model.payMode_dictText }}
-
+
+
{{ model.needInvoice_dictText }}
@@ -63,7 +65,7 @@
-
+
邮寄信息
diff --git a/src/views/incomePayments/meetManage/SignUpInfoEdit.vue b/src/views/incomePayments/meetManage/SignUpInfoEdit.vue
index db096a5..a4aa967 100644
--- a/src/views/incomePayments/meetManage/SignUpInfoEdit.vue
+++ b/src/views/incomePayments/meetManage/SignUpInfoEdit.vue
@@ -242,7 +242,6 @@ export default {
if(this.model.id){
this.title = '编辑参会人'
}
- console.log(this.model)
// 设置编辑的显示隐藏状态
this.identifyType = this.model.identity
this.guestType = this.model.guestType ? this.model.guestType : null
@@ -265,9 +264,16 @@ export default {
if(record.payMode === 3){
this.$refs.formother.payModeBool = true
}
+ // 缴费方式为汇款 需要显示发票字段
+ if(record.payMode === 1){
+ this.$refs.formother.payModeBool = false
+ }
+
// 缴费方式为线上的需要回显订单号后四位
if(record.payMode === 2){
this.$refs.formother.onlinePayModeBool = true
+ // 控制发票是否显示的字段
+ this.$refs.formother.payModeBool = false
}
this.$refs.formother.setFormVal(this.model)
}