This commit is contained in:
liushuai
2020-07-08 11:05:43 +08:00
parent 120c7c1601
commit fe5d3b70df
53 changed files with 3596 additions and 1220 deletions

View File

@@ -138,3 +138,31 @@ export function setChakan2() {
}
})
}
// 采购合同内容查询
export function searchTable2(num) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '采购管理_采购合同内容_查询数据',
param: '采购合同流水号=' + num
}
})
}
// 查询离线合同明细
export function searchOfflineContractContent(num) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '采购管理_离线合同明细_查询数据',
param: `离线合同流水号=${num}`
}
})
}