新增历史贷款合同前端接口
This commit is contained in:
@@ -15,7 +15,8 @@
|
||||
"test:personal-create-input-params": "node tests/personal-create-input-params.test.js",
|
||||
"test:id-number-validation-removal": "node tests/id-number-validation-removal.test.js",
|
||||
"test:corporate-create-input-params": "node tests/corporate-create-input-params.test.js",
|
||||
"test:corporate-display-fields": "node tests/corporate-display-fields.test.js"
|
||||
"test:corporate-display-fields": "node tests/corporate-display-fields.test.js",
|
||||
"test:business-type-history-rate": "node tests/business-type-history-rate.test.js"
|
||||
},
|
||||
"keywords": [
|
||||
"vue",
|
||||
|
||||
@@ -53,6 +53,15 @@ export function queryCorporateCustomerMap(custId) {
|
||||
})
|
||||
}
|
||||
|
||||
// 查询历史贷款合同
|
||||
export function queryHistoryContracts(custIsn) {
|
||||
return request({
|
||||
url: '/loanPricing/workflow/history-contract',
|
||||
method: 'get',
|
||||
params: { custIsn: custIsn }
|
||||
})
|
||||
}
|
||||
|
||||
// 设定执行利率
|
||||
export function setExecuteRate(serialNum, executeRate) {
|
||||
return request({
|
||||
|
||||
Reference in New Issue
Block a user