chenrui 3 years ago
parent
commit
a8571f680b
1 changed files with 13 additions and 0 deletions
  1. 13 0
      src/api/shelfReplenish.js

+ 13 - 0
src/api/shelfReplenish.js

@@ -0,0 +1,13 @@
+import { axios } from '@/utils/request'
+
+//  补货单列表  有分页
+export const shelfReplenishList = (params) => {
+  const url = `/shelfReplenish/queryPage/${params.pageNo}/${params.pageSize}`
+  delete params.pageNo
+  delete params.pageSize
+  return axios({
+    url: url,
+    data: params,
+    method: 'post'
+  })
+}