This commit is contained in:
chenjianan
2019-06-14 08:15:57 +08:00
parent 3124baa9d7
commit a374ea5c8d
6 changed files with 364 additions and 9 deletions

View File

@@ -49,3 +49,27 @@ export function searchTable2(...params) {
}
})
}
// 查询表1标准件和外购件无分页
export function searchTable1Export(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_采购部采购_查询物料_分配后_加供应商',
param: `机床流水号_check=${params[0]}&机床流水号=${params[1]}&组件流水号_check=${params[2]}&组件流水号=${params[3]}&零件类型=${params[4]}`
}
})
}
// 查询表1基本件无分页
export function searchTable2Export(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_采购部采购_查询物料_基本件_分配后_加供应商',
param: `机床流水号_check=${params[0]}&机床流水号=${params[1]}&组件流水号_check=${params[2]}&组件流水号=${params[3]}`
}
})
}