feat(sdy): 更新经销商订单模型和导入功能

- 将 orderId 字段更改为 orderNo,类型从 number 改为 string
- 更新经销商资本模型中的 describe 字段为 comments- 在 shopDealerOrder 模型中添加 settledPrice 和 payPrice 字段
- 修改导入接口 URL,使用 MODULES_API_URL 前缀- 在用户验证页面添加权限控制
- 移除订单状态和结算状态的搜索选项
- 添加新的经销商订单编辑组件和相关功能
- 创建新的经销商订单管理页面,包含完整的CRUD操作- 添加批量删除和订单结算功能- 更新表格列配置,展示更多订单详情信息
This commit is contained in:
2025-10-13 23:03:44 +08:00
parent 12b1f8c026
commit 3ecfaeae87
16 changed files with 1151 additions and 148 deletions

View File

@@ -8,8 +8,8 @@ export interface ShopDealerOrder {
id?: number;
// 买家用户ID
userId?: number;
// 订单ID
orderId?: number;
// 订单编号
orderNo?: string;
// 订单总金额(不含运费)
orderPrice?: string;
// 分销商用户id(一级)