领用核算:去分页

This commit is contained in:
chenjianan
2018-11-28 10:57:02 +08:00
parent 739fdd22da
commit 52741c03d7
2 changed files with 7 additions and 26 deletions

View File

@@ -12,15 +12,14 @@ export function initProject() {
})
}
// 初始化项目金额统计表
export function searchReceiveCheck(pageCurrent, pageSize, check, num) {
export function searchReceiveCheck(check, num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_领用核算_查询数据',
param: `项目流水号_check=${check}&项目流水号=${num}`,
Pagination: pageCurrent + '&' + pageSize
param: `项目流水号_check=${check}&项目流水号=${num}`
}
})
}