diff --git a/src/api/archivesManage/outInStorage.js b/src/api/archivesManage/outInStorage.js index 39a75e2..a91ac3e 100644 --- a/src/api/archivesManage/outInStorage.js +++ b/src/api/archivesManage/outInStorage.js @@ -32,4 +32,11 @@ export function grant(params) { method: 'post' }) } -export default { initCaseByArchives, isOccupy, collect, grant } +// 出入库记录 导出 +export function exportStorageLogList(params) { + return request({ + url: 'api/storage/exportStorageLogList' + '?' + qs.stringify(params, { indices: false }), + method: 'get' + }) +} +export default { initCaseByArchives, isOccupy, collect, grant, exportStorageLogList } diff --git a/src/views/archivesManage/outInStorage/outInHistory/index.vue b/src/views/archivesManage/outInStorage/outInHistory/index.vue index 09ae672..f459c09 100644 --- a/src/views/archivesManage/outInStorage/outInHistory/index.vue +++ b/src/views/archivesManage/outInStorage/outInHistory/index.vue @@ -2,7 +2,7 @@
- 导出 + 导出 @@ -34,12 +34,13 @@ height="calc(100vh - 357px)" :data="crud.data" :loading="crud.downloadLoading" + :row-key="getRowKey" :cell-class-name="cell" @row-click="clickRowHandler" @row-dblclick="handleDbClick" @selection-change="selectionChangeHandler" > - +