替换件到货:改查询条件无效

This commit is contained in:
chenjianan
2018-11-23 09:10:48 +08:00
parent da0f79d68e
commit a0e238ef01
2 changed files with 12 additions and 7 deletions

View File

@@ -1,12 +1,13 @@
import request from '@/utils/request'
// 替换单查询
export function searchSubstitutedCard() {
export function searchSubstitutedCard(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_替换件_替换单查询'
name: '库存管理_替换件_替换单查询',
param: `替换单编号_check=${params[0]}&替换单编号=${params[1]}&替换件名称_check=${params[2]}&替换件名称=${params[3]}`
}
})
}