This commit is contained in:
wkc
2026-01-22 16:01:12 +08:00
parent c102714f92
commit d75e6a9594
7 changed files with 271 additions and 18 deletions

View File

@@ -25,3 +25,12 @@ export function createWorkflow(data) {
data: data
})
}
// 设定执行利率
export function setExecuteRate(serialNum, executeRate) {
return request({
url: '/loanPricing/workflow/' + serialNum + '/executeRate',
method: 'put',
data: { executeRate: executeRate }
})
}