采购请款审核

This commit is contained in:
zhangdingyu
2019-11-12 17:27:17 +08:00
parent 5223957c8e
commit 51fb51efb4
3 changed files with 16 additions and 74 deletions

View File

@@ -75,14 +75,14 @@ export function execApprovalOffline(num1, num2, reason, person, state) {
})
}
// 采购合同内容查询
export function searchContactDetail(num) {
export function searchContactDetail(check, num1, num2) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_采购合同内容_查询数据',
param: '采购合同流水号=' + num
name: '采购管理_采购合同内容_查询数据_合并后',
param: `check=${check}&采购合同流水号=${num1}&离线合同流水号=${num2}`
}
})
}