新增版本检测,合同记录,业绩账户调整

This commit is contained in:
唐明明
2023-04-24 15:48:36 +08:00
parent ef27f7d400
commit 598450e1a3
20 changed files with 969 additions and 41 deletions

View File

@@ -157,6 +157,21 @@ const getTeamLogs = data => {
})
}
// 签约记录
const getSignLogs = data => {
return request({
url: 'business/flows',
data
})
}
// 获取签约合同
const getFlows = id => {
return request({
url: 'e-signs/flows/' + id
})
}
export {
relations,
code,
@@ -176,4 +191,6 @@ export {
submitTeamName,
getTeam,
getTeamLogs,
getSignLogs,
getFlows
}