feat(sdy): 新增订单与资金管理功能- 在 ShopDealerOrder 模型中添加客户名称、业务员、价格等相关字段- 在 ShopDealerCapital 模型中增加订单编号字段及用户ID查询参数

- 优化 clinicPatientUserEdit 组件用户ID显示逻辑
- 移除 cmsArticle 组件中未使用的 push 方法导入
- 重构 shopDealerCapital 搜索组件,支持关键词搜索和导出功能
- 调整 shopDealerCapital 表格列宽和金额显示样式-重构 shopDealerOrder2 搜索组件,支持关键词搜索和导出功能
- 在 shopDealerOrder2 表格中新增订单编号列- 启用开发环境 API 地址配置
This commit is contained in:
2025-11-04 01:21:03 +08:00
parent d2d8dff1e1
commit dc456f78a5
9 changed files with 249 additions and 175 deletions

View File

@@ -6,12 +6,28 @@ import type { PageParam } from '@/api';
export interface ShopDealerOrder {
// 主键ID
id?: number;
// 客户名称
title?: string;
// 买家用户ID
userId?: number;
// 业务员
nickname?: string;
// 订单编号
orderNo?: string;
// 订单总金额(不含运费)
orderPrice?: string;
// 价格
price?: string;
// 结算金额
settledPrice?: string;
// 换算成度
degreePrice?: string;
// 汇率
rate?: number;
// 月份
month?: string;
// 实发金额
payPrice?: string;
// 分销商用户id(一级)
firstUserId?: number;
// 分销商用户id(二级)