From b9b8158e1ae42fa37db91f748f994c99c3bc7452 Mon Sep 17 00:00:00 2001 From: xuhuajiao <13476289682@163.com> Date: Thu, 2 Nov 2023 17:08:58 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E5=BD=92=E6=A1=A3=E5=BA=93-=E5=90=88?= =?UTF-8?q?=E5=B9=B6=E6=88=90=E4=BB=B6/=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../prearchiveLibrary/prearchiveLibrary.js | 20 +- src/api/system/category/category.js | 10 +- src/views/components/category/PreviewForm.vue | 96 +++++++-- src/views/prearchiveLibrary/index.vue | 56 ++++-- src/views/prearchiveLibrary/module/detail.vue | 188 ++++++++++++++++++ .../prearchiveLibrary/module/moveFile.vue | 10 +- .../system/notifyManage/module/selectObj.vue | 6 + 7 files changed, 337 insertions(+), 49 deletions(-) create mode 100644 src/views/prearchiveLibrary/module/detail.vue diff --git a/src/api/prearchiveLibrary/prearchiveLibrary.js b/src/api/prearchiveLibrary/prearchiveLibrary.js index 7b0d119..edd3204 100644 --- a/src/api/prearchiveLibrary/prearchiveLibrary.js +++ b/src/api/prearchiveLibrary/prearchiveLibrary.js @@ -65,4 +65,22 @@ export function FetchBatchToFile(data) { }) } -export default { add, prearchEdit, del, FetchInitPreDocument, FetchInitDocumentsViewTable, FetchDoeditDocument, FetchBatchToFile } +// 合并成件 +export function FetchMergeToFile(data) { + return request({ + url: 'api/re-document/mergeToFile', + method: 'post', + data + }) +} + +// 移动 +export function FetchMove(data) { + return request({ + url: 'api/re-document/move', + method: 'post', + data + }) +} + +export default { add, prearchEdit, del, FetchInitPreDocument, FetchInitDocumentsViewTable, FetchDoeditDocument, FetchBatchToFile, FetchMergeToFile, FetchMove } diff --git a/src/api/system/category/category.js b/src/api/system/category/category.js index 733254e..250438d 100644 --- a/src/api/system/category/category.js +++ b/src/api/system/category/category.js @@ -122,4 +122,12 @@ export function FetchInitCategoryFieldByPid(params) { }) } -export default { add, edit, del, FetchCategoryMenu, FetchInitCategoryField, FetchCategoryFieldManage, FetchUpardicSort, FetchInitCategoryFieldByPid } +export function FetchInitCategoryInputFieldByPid(params) { + return request({ + url: 'api/category/initCategoryInputFieldByPid', + method: 'get', + params + }) +} + +export default { add, edit, del, FetchCategoryMenu, FetchInitCategoryField, FetchCategoryFieldManage, FetchUpardicSort, FetchInitCategoryFieldByPid, FetchInitCategoryInputFieldByPid } diff --git a/src/views/components/category/PreviewForm.vue b/src/views/components/category/PreviewForm.vue index 3482891..2b2f907 100644 --- a/src/views/components/category/PreviewForm.vue +++ b/src/views/components/category/PreviewForm.vue @@ -45,7 +45,7 @@ - + @@ -75,25 +75,37 @@
- + + + + + + +
+ + + + +
+ - +
+
+ + + +
+ - - - - - -
@@ -102,7 +114,7 @@ + + diff --git a/src/views/prearchiveLibrary/module/moveFile.vue b/src/views/prearchiveLibrary/module/moveFile.vue index cb7a98d..fff5dc7 100644 --- a/src/views/prearchiveLibrary/module/moveFile.vue +++ b/src/views/prearchiveLibrary/module/moveFile.vue @@ -11,6 +11,7 @@ v-loading="crud.loading" :data="crud.data" node-key="id" + default-expand-all :props="defaultProps" :expand-on-click-node="false" @node-click="handleMoveNodeClick" @@ -18,14 +19,6 @@
- - - 搜索
@@ -70,6 +63,7 @@