parent
d3aea85ae0
commit
7f367ddbf1
3 changed files with 41 additions and 26 deletions
@ -1,9 +1,23 @@ |
||||
import request from '@/axios'; |
||||
//列表接口
|
||||
export const getList = (params) => { |
||||
export const getList = (data) => { |
||||
return request({ |
||||
url: '/blade-desk/order/yieldPlan/pageAllocation', |
||||
method: 'get', |
||||
params |
||||
url: '/blade-desk/QA/PlanTest/queryAllocationMess', |
||||
method: 'post', |
||||
data:data |
||||
}); |
||||
}; |
||||
|
||||
|
||||
// 统计接口查询 /QA/PlanTest/queryAllocationStatistics
|
||||
export const getStatistics = (current, size, params) => { |
||||
return request({ |
||||
url: '/blade-desk/QA/PlanTest/queryAllocationStatistics', |
||||
method: 'post', |
||||
data: { |
||||
...params, |
||||
current, |
||||
size, |
||||
}, |
||||
}); |
||||
}; |
||||
Loading…
Reference in new issue