diff --git a/src/api/collect/collect.js b/src/api/collect/collect.js index 1569eac..d183f9f 100644 --- a/src/api/collect/collect.js +++ b/src/api/collect/collect.js @@ -180,6 +180,15 @@ export function FetchInsertSingle(data) { }) } +// 移动 +export function FetchMove(data) { + return request({ + url: 'api/collect/move', + method: 'post', + data + }) +} + export default { collectAdd, collectEdit, @@ -198,5 +207,6 @@ export default { FetchArchivesAdjust, FetchDisbandArchives, FetchMergeArchives, - FetchInsertSingle + FetchInsertSingle, + FetchMove } diff --git a/src/views/collectReorganizi/collectionLibrary/mixins/index.js b/src/views/collectReorganizi/collectionLibrary/mixins/index.js index 0ca28cd..a8c13ee 100644 --- a/src/views/collectReorganizi/collectionLibrary/mixins/index.js +++ b/src/views/collectReorganizi/collectionLibrary/mixins/index.js @@ -67,6 +67,7 @@ export const collectionLibraryCrud = { this.$parent.$parent.getTableDisplayFieldsLoading = true this.parentsId = this.parentsData.parentsAnjuanId } else if (this.isTitleType === 6) { + console.log('isTitleType', this.isTitleType) // 原文 if (this.selectedCategory.arrangeType === 1) { this.parentsId = this.parentsData.parentsAnjuanId diff --git a/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue b/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue index 8a29623..0a24b43 100644 --- a/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue +++ b/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue @@ -1,6 +1,6 @@