diff --git a/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue b/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue new file mode 100644 index 0000000..d87d67b --- /dev/null +++ b/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue @@ -0,0 +1,161 @@ + + + + + \ No newline at end of file diff --git a/src/views/projectManagement/WorkingGroupProjectManagement.vue b/src/views/projectManagement/WorkingGroupProjectManagement.vue index 1a9de6d..f75cd1e 100644 --- a/src/views/projectManagement/WorkingGroupProjectManagement.vue +++ b/src/views/projectManagement/WorkingGroupProjectManagement.vue @@ -64,7 +64,7 @@ bordered rowKey="id" :columns="columns" - :scroll="{x: 1000}" + :scroll="{x: 1200}" :dataSource="dataSource" :pagination="ipagination" :loading="loading" @@ -91,10 +91,12 @@ - 会议维护 - 编辑 - 删除 - + 文件维护 + 会议维护 + 复制 + 编辑 + 删除 + @@ -162,13 +164,23 @@ export default { dataIndex: 'action', align: 'center', fixed: 'right', - width: 180, + width: 300, scopedSlots: { customRender: 'action' } } ] } }, methods: { + /** + * 文件维护 + * @param record + */ + goFilesMaintenance(record) { + console.log(record) + this.$router.push({ + path: '/projectManagement/WorkingGroupProjectDataMaintenance' + }) + }, /** * 会议维护 * @param record @@ -182,6 +194,10 @@ export default { } }) }, + /** + * 成员维护 + * @param record + */ goMemberUnitMaintenance(record) { this.$router.push({ path: '/projectManagement/WorkingGroupMemberUnitMaintenance', diff --git a/src/views/projectManagement/modules/WorkGroupDistributeModule.vue b/src/views/projectManagement/modules/WorkGroupDistributeModule.vue new file mode 100644 index 0000000..98af311 --- /dev/null +++ b/src/views/projectManagement/modules/WorkGroupDistributeModule.vue @@ -0,0 +1,163 @@ + + + + + \ No newline at end of file diff --git a/src/views/projectManagement/modules/WorkGroupFileUploadModal.vue b/src/views/projectManagement/modules/WorkGroupFileUploadModal.vue new file mode 100644 index 0000000..18d96a4 --- /dev/null +++ b/src/views/projectManagement/modules/WorkGroupFileUploadModal.vue @@ -0,0 +1,136 @@ + + + + + \ No newline at end of file