fixed bug

This commit is contained in:
chenjianan
2019-06-21 11:05:59 +08:00
parent 5e18bfcc3a
commit d768f952d1
4 changed files with 177 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
import request from '@/utils/request'
// 查询外协到货单列表
export function searchTable1(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理_外协到货单_查询数据',
param: ``,
Pagination: params[0] + '&' + params[1]
}
})
}
// 查询外协到货单明细
export function searchTable2(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理_外协到货单明细_查询数据',
param: `外协到货单流水号=${params[2]}`,
Pagination: params[0] + '&' + params[1]
}
})
}