parent
d3aea85ae0
commit
7f367ddbf1
3 changed files with 41 additions and 26 deletions
@ -1,9 +1,23 @@ |
|||||||
import request from '@/axios'; |
import request from '@/axios'; |
||||||
//列表接口
|
//列表接口
|
||||||
export const getList = (params) => { |
export const getList = (data) => { |
||||||
return request({ |
return request({ |
||||||
url: '/blade-desk/order/yieldPlan/pageAllocation', |
url: '/blade-desk/QA/PlanTest/queryAllocationMess', |
||||||
method: 'get', |
method: 'post', |
||||||
params |
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