feat(violation): 添加违章处理状态选择功能

- 新增处理状态字段,默认值为"未处理"
- 添加状态选择器组件,支持选择"未处理"和"已处理"
- 更新表单初始化逻辑,兼容编辑和新增模式下的状态设置
- 调整API基础URL配置,统一使用生产环境地址
- 更新应用名称为"邕递+"
- 车辆信息模型增加保单图片字段
-优化车辆查询页面,显示保单图片预览功能
- 更新违章列表页面,将"提交时间"改为"创建时间"显示
This commit is contained in:
2025-10-15 01:01:43 +08:00
parent cd7de05e33
commit d52731e435
5 changed files with 106 additions and 24 deletions

View File

@@ -2,14 +2,14 @@
export const ENV_CONFIG = {
// 开发环境
development: {
API_BASE_URL: 'http://127.0.0.1/api',
API_BASE_URL: 'https://cms-api.websoft.top/api',
APP_NAME: '开发环境',
DEBUG: 'true',
},
// 生产环境
production: {
API_BASE_URL: 'https://cms-api.websoft.top/api',
APP_NAME: '时里院子市集',
APP_NAME: '邕递+',
DEBUG: 'false',
},
// 测试环境