This commit is contained in:
parent
fc879571b8
commit
40a3e2e8de
|
|
@ -37,3 +37,10 @@ export function transferAuditDetailApi(data) {
|
||||||
data: data,
|
data: data,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
export function getFileManageByDeptApi(data) {
|
||||||
|
return request({
|
||||||
|
url: '/blade-system/archivingManage/getFileManageByDept',
|
||||||
|
method: 'POST',
|
||||||
|
data: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -142,7 +142,7 @@
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { ref, reactive, watch, nextTick } from 'vue';
|
import { ref, reactive, watch, nextTick } from 'vue';
|
||||||
import { ElMessage, ElLoading, ElMessageBox } from 'element-plus';
|
import { ElMessage, ElLoading, ElMessageBox } from 'element-plus';
|
||||||
import { getFileManageApi } from '@/api/archivesManagement/fileManager/fileManager.js';
|
import { getFileManageByDeptApi } from '@/api/archivesManagement/archivingManage.js';
|
||||||
import { getArchivingManageFilesApi,submitRectifyNoticeApi,agreeRectificationApi } from '@/api/archivesManagement/archivingManage';
|
import { getArchivingManageFilesApi,submitRectifyNoticeApi,agreeRectificationApi } from '@/api/archivesManagement/archivingManage';
|
||||||
import ViewFile from '@/views/viewFile/viewFile.vue';
|
import ViewFile from '@/views/viewFile/viewFile.vue';
|
||||||
import FileTree from '@/views/common/fileTree.vue'; // 引入文件树组件
|
import FileTree from '@/views/common/fileTree.vue'; // 引入文件树组件
|
||||||
|
|
@ -358,7 +358,7 @@ const onLoad = async (pageParam, params = {}) => {
|
||||||
pageNum: pageParam.currentPage,
|
pageNum: pageParam.currentPage,
|
||||||
pageSize: pageParam.pageSize
|
pageSize: pageParam.pageSize
|
||||||
};
|
};
|
||||||
const res = await getFileManageApi(requestData);
|
const res = await getFileManageByDeptApi(requestData);
|
||||||
if (res.data.code === 200) {
|
if (res.data.code === 200) {
|
||||||
tableData.value = res.data.rows;
|
tableData.value = res.data.rows;
|
||||||
page.total = res.data.total;
|
page.total = res.data.total;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue