update 起草组会议部分

This commit is contained in:
danshihao
2024-01-09 15:16:08 +08:00
parent 9097b84ad8
commit ef0ef97443
8 changed files with 102 additions and 42 deletions
@@ -1,6 +1,6 @@
<template>
<div>
<page-header-title :is-level-one="false" :level-two-title="workingGroupProject"></page-header-title>
<page-header-title :is-level-one="false" :level-two-title="draftingGroupProject"></page-header-title>
<a-card :bordered="false">
<!-- 查询区域-->
<div class="table-page-search-wrapper">
@@ -153,8 +153,8 @@ export default {
mixins: [JeroListMixin, RangeDateMixin],
data() {
return {
workingGroupProject: '',
workingGroupProjectId: '',
draftingGroupProject: '',
draftingGroupProjectId: '',
disableMixinCreated: true,
list: [],
labelCol: {
@@ -247,19 +247,19 @@ export default {
}
],
url: {
list: '/meeting/workGroupMeeting/page',
delete: '/meeting/workGroupMeeting/delete',
deleteBatch: '/meeting/workGroupMeeting/deleteBatch',
exportXlsUrl: '/meeting/workGroupMeeting/exportXls'
list: '/meeting/draftGroupMeeting/page',
delete: '/meeting/draftGroupMeeting/delete',
deleteBatch: '/meeting/draftGroupMeeting/deleteBatch',
exportXlsUrl: '/meeting/draftGroupMeeting/exportXls'
},
canOperate: true // 是否可操作(负责人B不可操作)
}
},
created() {
this.workingGroupProject = this.$route.query.workingGroupProject
this.workingGroupProjectId = this.$route.query.workingGroupProjectId
this.draftingGroupProject = this.$route.query.draftingGroupProject
this.draftingGroupProjectId = this.$route.query.draftingGroupProjectId
this.canOperate = this.$route.query.canOperate === 'true' ? true : false
this.filters.workingGroupId = this.workingGroupProjectId
this.filters.draftingGroupId = this.draftingGroupProjectId
this.loadData(1)
},
methods: {
@@ -268,7 +268,7 @@ export default {
*/
backWorkingGroupProject() {
this.$router.push({
path: '/projectManagement/WorkingGroupProjectManagement'
path: '/draftingGroup/DraftingGroupManagement'
})
},
/*
@@ -276,12 +276,12 @@ export default {
* */
handleAdd() {
// 记录当前的工作组id
let currentId = this.$route.query.workingGroupProjectId
let currentId = this.$route.query.draftingGroupProjectId
this.$router.push({
path: '/incomePayments/meetManage/AddOrDetailMeet',
query: {
workingGroupProjectId: currentId,
meetingType: '1'
draftingGroupProjectId: currentId,
meetingType: '7'
}
})
},
@@ -290,11 +290,11 @@ export default {
* */
handleEdit(record) {
// 记录当前的工作组id
let currentId = this.$route.query.workingGroupProjectId
let currentId = this.$route.query.draftingGroupProjectId
this.$router.push({
path: '/incomePayments/meetManage/AddOrDetailMeet',
query: {
workingGroupProjectId: currentId,
draftingGroupProjectId: currentId,
id: record.id
}
})
@@ -336,7 +336,7 @@ export default {
query: {
id: record.id,
meetingName: record.meetingName,
meetingType: '1'
meetingType: '7'
}
})
},