feat(dealer): 优化客户保护期逻辑并添加删除功能

- 新增计算保护期过期时间的方法
- 修改提交逻辑,增加过期时间字段
- 优化保护天数计算逻辑,优先使用过期时间
- 添加客户删除功能
- 调整客户列表显示逻辑
This commit is contained in:
2025-09-14 23:39:05 +08:00
parent 8b20d6c7c2
commit 924188568c
4 changed files with 117 additions and 40 deletions

View File

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