diff --git a/src/api/inbound.js b/src/api/inbound.js index a2ac040..5939d45 100644 --- a/src/api/inbound.js +++ b/src/api/inbound.js @@ -34,4 +34,10 @@ export const deleteLabel = data => createAPI(`inbound/deleteLabel`, 'post', data * 获取物料清单 * @param {Object} data - 查询参数 {site, buNo, inboundNo} */ -export const getMaterialList = data => createAPI(`inbound/getMaterialList`, 'post', data) \ No newline at end of file +export const getMaterialList = data => createAPI(`inbound/getMaterialList`, 'post', data) + +/** + * 获取已扫描标签列表(从缓存表) + * @param {Object} data - 查询参数 {site, buNo, inboundNo} + */ +export const getScannedLabelList = data => createAPI(`inbound/getScannedLabelList`, 'post', data) \ No newline at end of file diff --git a/src/views/modules/purchase-inbound/inboundStorage.vue b/src/views/modules/purchase-inbound/inboundStorage.vue index dda33c6..87e86d0 100644 --- a/src/views/modules/purchase-inbound/inboundStorage.vue +++ b/src/views/modules/purchase-inbound/inboundStorage.vue @@ -204,7 +204,7 @@