diff --git a/src/App.vue b/src/App.vue
index 6dbb24c..03a4ae8 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -8,7 +8,18 @@
diff --git a/src/views/incomePayments/meetManage/modules/AuditModal.vue b/src/views/incomePayments/meetManage/modules/AuditModal.vue
index 5398260..26f6cab 100644
--- a/src/views/incomePayments/meetManage/modules/AuditModal.vue
+++ b/src/views/incomePayments/meetManage/modules/AuditModal.vue
@@ -156,6 +156,41 @@ export default {
// 审核报名信息
checkSignUp:'/meeting/payMeetingSituation/checkRegister'
},
+ // 其他会议url
+ otherMeetingUrl: {
+ // 审核凭证
+ check: '/meeting/ohterMeetingSituation/check',
+ // 审核报名信息
+ checkSignUp:'/meeting/ohterMeetingSituation/checkRegister'
+ },
+ // 工作组会议url
+ workGroupMeetingUrl: {
+ // 审核凭证
+ check: '/meeting/workGroupMeetingSituation/check',
+ // 审核报名信息
+ checkSignUp:'/meeting/workGroupMeetingSituation/checkRegister'
+ },
+ // 分标委会议url
+ committeeMeetingUrl: {
+ // 审核凭证
+ check: '/meeting/committeeMeetingSituation/check',
+ // 审核报名信息
+ checkSignUp:'/meeting/committeeMeetingSituation/checkRegister'
+ },
+ // 国际研讨会url
+ internalMeetingUrl: {
+ // 审核凭证
+ check: '/meeting/internalMeetingSituation/check',
+ // 审核报名信息
+ checkSignUp:'/meeting/internalMeetingSituation/checkRegister'
+ },
+ // 标协会议url
+ standardsMeetingUrl: {
+ // 审核凭证
+ check: '/meeting/standardsMeetingSituation/check',
+ // 审核报名信息
+ checkSignUp:'/meeting/standardsMeetingSituation/checkRegister'
+ },
// 审核结果选择
checkBool:false,
// 是否是审核报名信息
@@ -172,6 +207,8 @@ export default {
this.querySingUpUserInfo()
// 控制行程信息显示 审核凭证不显示
this.checkSignBool = signUp || false
+ // 会议类型不同 url不同
+ this.url = Object.assign({},this.createUrlByMeetingType(this.$route.query.meetingType))
console.log(record)
},
close() {
@@ -231,6 +268,18 @@ export default {
}else if(e.target.value === '0'){
this.checkBool = true
}
+ },
+ /*
+ * 根据会议类型不同的url
+ * */
+ createUrlByMeetingType(meetingType){
+ switch (meetingType){
+ case '1': return this.workGroupMeetingUrl
+ case '2': return this.standardsMeetingUrl
+ case '3': return this.internalMeetingUrl
+ case '4': return this.otherMeetingUrl
+ case '5': return this.committeeMeetingUrl
+ }
}
}
}
diff --git a/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue b/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue
index 5d27e98..10edb7b 100644
--- a/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue
+++ b/src/views/incomePayments/meetManage/modules/UploadMeetFileModal.vue
@@ -30,7 +30,7 @@