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 @@