diff --git a/src/api/system_store_storage.ts b/src/api/system_store_storage.ts index e9d2771..1638967 100644 --- a/src/api/system_store_storage.ts +++ b/src/api/system_store_storage.ts @@ -1,5 +1,13 @@ import request from '@/utils/request' +// 门店入库单列表 +export function apiWarehouseOrderLists(params: any) { + return request.get({ url: '/system_store_storage/warehouseorder/lists', params }) +} +export function apiWarehouseOrderEdit(params: any) { + return request.post({ url: '/system_store_storage/warehouseorder/edit', params }) +} + // 门店入库操作列表 export function apiSystemStoreStorageLists(params: any) { return request.get({ url: '/system_store_storage/systemstorestorage/lists', params }) @@ -33,4 +41,9 @@ export function apiSystemStoreStorageInfoLists(params: any) { // 门店入库操作详情 export function apiSystemStoreStorageInfoEdit(params: any) { return request.post({ url: '/system_store_storage/systemstorestorage/edit', params }) +} + +// 门店一键确认入库 +export function apiSystemStoreStorageInfoEditAll() { + return request.post({ url: '/system_store_storage/systemstorestorage/editAll' }) } \ No newline at end of file diff --git a/src/views/system_store_storage/index.vue b/src/views/system_store_storage/index.vue index 63cdc99..b879e27 100644 --- a/src/views/system_store_storage/index.vue +++ b/src/views/system_store_storage/index.vue @@ -1,6 +1,9 @@