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)
}