项目名称

This commit is contained in:
liushuai
2019-03-11 15:55:00 +08:00
parent fb4e658761
commit 49373845f5
5 changed files with 997 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
import request from '@/utils/request'
// 查询库存数
export function searchInventoryNum(pageCurrent, pageSize, check1, name, check2, state1, state2) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_离线合同_物料余量_查询数据',
param: `物料名称_check=${check1}&物料名称=${name}&库存状态_check=${check2}&库存状态=${state1}&采购状态=${state2}`,
Pagination: pageCurrent + '&' + pageSize
}
})
}