【bug】不同参会情况的标题修改

This commit is contained in:
fengachen
2021-10-22 11:29:04 +08:00
parent dba6334852
commit 982ddaf1c0
5 changed files with 14 additions and 20 deletions
@@ -365,13 +365,20 @@ export default {
* 参会情况
* */
toAttendance(record) {
const that = this
let path =''
let meetingType = this.$route.query.meetingType + ''
// 分标委会议与标协会议的跳转
if(meetingType === '2' ){
path = '/incomePayments/meetManage/AttendanceStandardsMeeting'
}else if(meetingType === '5'){
path = '/incomePayments/meetManage/AttendanceCommitteeMeeting'
}
this.$router.push({
path: '/incomePayments/meetManage/Attendance',
path: path,
query: {
id: record.id,
meetingName: record.meetingName,
meetingType:that.$route.query.meetingType + ''
meetingType:meetingType
}
})
},