From 527bb2f59311ddfe8fbaa18f2765ec3899a77988 Mon Sep 17 00:00:00 2001
From: fengachen <373943794@qq.com>
Date: Tue, 7 Sep 2021 14:46:20 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8F=82=E4=BC=9A=E6=83=85=E5=86=B5=20?=
=?UTF-8?q?=E4=BC=9A=E8=AE=AE=E8=AF=A6=E6=83=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/jero/JModal/index.vue | 1 -
.../meetManage/AddOrDetailMeet.vue | 4 +-
.../incomePayments/meetManage/Attendance.vue | 186 ++++++++++++++----
.../meetManage/MeetManageList.vue | 4 -
4 files changed, 151 insertions(+), 44 deletions(-)
diff --git a/src/components/jero/JModal/index.vue b/src/components/jero/JModal/index.vue
index 81cab0f..6a3a70d 100644
--- a/src/components/jero/JModal/index.vue
+++ b/src/components/jero/JModal/index.vue
@@ -107,7 +107,6 @@
return Object.keys(this.$slots).filter(key => !this.usedSlots.includes(key))
},
scopedSlotsKeys() {
- console.log(this.$scopedSlots,'-----------------------------------')
return Object.keys(this.$scopedSlots).filter(key => !this.usedSlots.includes(key))
},
allSlotsKeys() {
diff --git a/src/views/incomePayments/meetManage/AddOrDetailMeet.vue b/src/views/incomePayments/meetManage/AddOrDetailMeet.vue
index 580d8a5..061cf19 100644
--- a/src/views/incomePayments/meetManage/AddOrDetailMeet.vue
+++ b/src/views/incomePayments/meetManage/AddOrDetailMeet.vue
@@ -419,7 +419,7 @@ export default {
}
},
},
- created() {
+ mounted() {
this.pcaData = new AreaPca()
// 编辑获取会议信息
if (this.$route.query.id) {
@@ -474,7 +474,7 @@ export default {
// 如果是标协会议则回显 标协会议的字段
if(this.meetingType === '2'){
console.log('this.model',this.model)
- this.form.setFieldsValue(pick(this.model,'signInTime','tbMeetingType','meetingCostsVip','hotelName','hotelAddress' ))
+ this.form.setFieldsValue(pick(this.model,'signInTime','hotelContactsList','tbMeetingType','meetingCostsVip','hotelName','hotelAddress' ))
}
// 如果是工作组会议 赋值工作组
if(this.meetingType === '1'){
diff --git a/src/views/incomePayments/meetManage/Attendance.vue b/src/views/incomePayments/meetManage/Attendance.vue
index 8398010..8e4ac2f 100644
--- a/src/views/incomePayments/meetManage/Attendance.vue
+++ b/src/views/incomePayments/meetManage/Attendance.vue
@@ -7,25 +7,64 @@
-
+ {{ currentMeetingInfo.meetingName }}
-
+ {{ meetingType }}
+
+
+
+ {{ tbMeetingType }}
-
+ {{ currentMeetingInfo.directorName }}
+
+
+
+ {{ currentMeetingInfo.workingGroupName }}
-
+ {{ currentMeetingInfo.directorPhone }}
-
+ {{ currentMeetingInfo.startTime + '~' + currentMeetingInfo.endTime }}
-
+ {{ currentMeetingInfo.particularYear }}
-
+ {{ currentMeetingInfo.registerDeadline }}
+
+
+ {{ currentMeetingInfo.venue + '/' + currentMeetingInfo.address }}
+
+
+ {{ currentMeetingInfo.meetingCosts }} 元/人
+
+
+ {{ currentMeetingInfo.meetingCostsVip }} 元/人
+
+
+ {{ currentMeetingInfo.estimatedNumber }}
+
+
+ {{ currentMeetingInfo.hotelName }}
+
+
+ {{ currentMeetingInfo.hotelAddress }}
+
+
+
+ {{ currentMeetingInfo.vipInvitationCode }}
+
+
+ {{ currentMeetingInfo.speakerInvitationCode }}
+
+
+ {{ currentMeetingInfo.guestInvitationCode }}
+
+
+ {{ currentMeetingInfo.cooperativeInvitationCode }}
@@ -34,17 +73,20 @@
-
+
-
+
-
-
+
+ {{item.hotelContacts+':' + item.hotelContactsPhone + ' '}}
-
+ {{ currentMeetingInfo.meetingContent }}
+
+
+ {{ currentMeetingInfo.remark }}
参会人员信息
@@ -120,17 +162,17 @@
+ ref="table"
+ size="middle"
+ bordered
+ rowKey="id"
+ :columns="columns"
+ :dataSource="dataSource"
+ :pagination="ipagination"
+ :loading="loading"
+ :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+ class="j-table-force-nowrap"
+ @change="handleTableChange">
参会单位
@@ -159,6 +201,7 @@