会议参会人的权限修改

This commit is contained in:
fengachen
2021-10-08 16:34:32 +08:00
parent ed8cfa45c8
commit 263af748a1
6 changed files with 152 additions and 22 deletions
@@ -293,6 +293,7 @@ export default {
caseCommitteeId(){
return this.$route.query.id ? this.$route.query.id : undefined
},
// eslint-disable-next-line
url() {
let meetingType = this.$route.query.meetingType + ''
// 标协会议
@@ -357,11 +358,13 @@ export default {
* 参会情况
* */
toAttendance(record) {
const that = this
this.$router.push({
path: '/incomePayments/meetManage/Attendance',
query: {
id: record.id,
meetingName: record.meetingName
meetingName: record.meetingName,
meetingType:that.$route.query.meetingType + ''
}
})
},