fix(credit): 修复客户跟进流程步骤验证逻辑

- 修改第2步验证逻辑,允许直接进入无需审核通过
- 将第3-7步的验证条件从提交状态改为审核状态
- 更新开发环境API基础URL配置
- 添加后端Controller审核接口实现提示
- 补充步骤功能测试指南文档
This commit is contained in:
2026-03-23 00:24:35 +08:00
parent 71c943fc60
commit d928a38962
9 changed files with 500 additions and 7 deletions

View File

@@ -2,8 +2,8 @@
export const ENV_CONFIG = {
// 开发环境
development: {
// API_BASE_URL: 'http://127.0.0.1:9200/api',
API_BASE_URL: 'https://ysb-api.websoft.top/api',
API_BASE_URL: 'http://127.0.0.1:9200/api',
// API_BASE_URL: 'https://ysb-api.websoft.top/api',
APP_NAME: '开发环境',
DEBUG: 'true',
},