归档贷款定价流程相关的 OpenSpec 变更

- 归档 add-loan-pricing-workflow:完成流程后端 API
- 归档 add-loan-pricing-frontend:完成前端列表和详情页面
- 归档 add-loan-pricing-create:完成前端创建功能
- 新增规范文件:loan-pricing-workflow 和 loan-pricing-workflow-ui
- 更新前端 API 和页面组件(新增创建流程功能)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
wkc
2026-01-20 18:20:23 +08:00
parent 4511f91e91
commit f2448ff97f
15 changed files with 656 additions and 7 deletions

View File

@@ -16,3 +16,12 @@ export function getWorkflow(serialNum) {
method: 'get'
})
}
// 新增利率定价流程
export function createWorkflow(data) {
return request({
url: '/loanPricing/workflow/create',
method: 'post',
data: data
})
}