新增客户号查询并回填客户信息

This commit is contained in:
wkc
2026-04-29 14:13:27 +08:00
parent a90ab42be6
commit 3180c33500
13 changed files with 474 additions and 22 deletions

View File

@@ -35,6 +35,24 @@ export function createCorporateWorkflow(data) {
})
}
// 查询个人客户号映射
export function queryPersonalCustomerMap(custId) {
return request({
url: '/loanPricing/workflow/customer-map/personal',
method: 'get',
params: { custId: custId }
})
}
// 查询企业客户号映射
export function queryCorporateCustomerMap(custId) {
return request({
url: '/loanPricing/workflow/customer-map/corporate',
method: 'get',
params: { custId: custId }
})
}
// 设定执行利率
export function setExecuteRate(serialNum, executeRate) {
return request({