流程列表

This commit is contained in:
wkc
2026-01-20 15:09:10 +08:00
parent b6443ba07f
commit 44c6aed105
6 changed files with 331 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询利率定价流程列表
export function listWorkflow(query) {
return request({
url: '/loanPricing/workflow/list',
method: 'get',
params: query
})
}
// 查询利率定价流程详情
export function getWorkflow(serialNum) {
return request({
url: '/loanPricing/workflow/' + serialNum,
method: 'get'
})
}