diff --git a/base-ui/src/api/kucun/ruku.js b/base-ui/src/api/kucun/ruku.js index e3006940..4002d06d 100644 --- a/base-ui/src/api/kucun/ruku.js +++ b/base-ui/src/api/kucun/ruku.js @@ -7,12 +7,46 @@ export function recount() { method: 'get' }) } -// 条件查询 -export function downloadhz(parm) { +// 入库汇总信息 +export function countinfo() { return request({ - url: '/kucun/downloadhz', - method: 'get', - responseType: 'blob', - params: parm + url: '/ruku/countinfo', + method: 'get' + }) +} + +// 112仓入库信息分页查询 +export function in112PagerList(data) { + return request({ + url: '/ruku/in112PagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 所有入库信息分页查询 +export function inallPagerList(data) { + return request({ + url: '/ruku/inallPagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 入库单导入日志分页查询 +export function logPagerList(data) { + return request({ + url: '/ruku/logPagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } }) } diff --git a/base-ui/src/views/kucun/rkmx/index.vue b/base-ui/src/views/kucun/rkmx/index.vue index 399a1811..2a395506 100644 --- a/base-ui/src/views/kucun/rkmx/index.vue +++ b/base-ui/src/views/kucun/rkmx/index.vue @@ -1,16 +1,100 @@