feat(api): 添加分销商相关数据模型

- 新增分销商申请、资金明细、订单记录、推荐关系、设置、用户记录、提现明细等数据模型
- 更新环境配置,修改 API 基础 URL 和应用名称
This commit is contained in:
2025-08-11 12:04:21 +08:00
parent ffc73f45c2
commit 044c6f8580
8 changed files with 277 additions and 4 deletions

View File

@@ -2,8 +2,8 @@
export const ENV_CONFIG = {
// 开发环境
development: {
API_BASE_URL: 'http://127.0.0.1:9200/api',
APP_NAME: '时里院子市集',
API_BASE_URL: 'https://cms-api.websoft.top/api',
APP_NAME: '开发环境',
DEBUG: 'true',
},
// 生产环境
@@ -14,8 +14,8 @@ export const ENV_CONFIG = {
},
// 测试环境
test: {
API_BASE_URL: 'https://test-api.example.com/api',
APP_NAME: 'Taro App Test',
API_BASE_URL: 'https://cms-api.s209.websoft.top/api',
APP_NAME: '测试环境',
DEBUG: 'true',
}
}