合同内容

This commit is contained in:
chenjianan
2019-04-20 11:23:04 +08:00
parent 6f6b39b9ff
commit a6c37b1398
4 changed files with 194 additions and 9 deletions

View File

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