@@ -23,6 +23,15 @@ export const outOfStockList = (params) => {
method: 'post'
})
}
+// 采购缺货统计
+export const outOfStockQueryCount = params => {
+ const url = `/oos/queryCount`
+ return axios({
+ url: url,
+ data: params,
+ method: 'post'
+ })
+}
// 缺货详情导出
export const outOfStockExportDetail = (params) => {
const url = '/oos/export'
@@ -955,7 +955,7 @@ export const asyncRouterMap = [
name: 'purchaseOutOfStock',
component: BlankLayout,
meta: {
- title: '采购缺货',
+ title: '采购缺货列表',
icon: 'money-collect'
// permission: 'M_purchaseOutOfStockList'
},