feat(sdy): 添加分销商昵称字段及佣金展示- 在订单模型中新增一级、二级、三级分销商昵称字段

- 在搜索组件中增加三级佣金比例展示
- 更新表格数据渲染逻辑以显示分销商昵称和收益信息
This commit is contained in:
2025-11-04 14:28:05 +08:00
parent dc456f78a5
commit b5d4cc9189
2 changed files with 12 additions and 0 deletions

View File

@@ -34,6 +34,12 @@ export interface ShopDealerOrder {
secondUserId?: number;
// 分销商用户id(三级)
thirdUserId?: number;
// 一级分销商昵称
firstNickname?: string;
// 二级分销商昵称
secondNickname?: string;
// 三级分销商昵称
thirdNickname?: string;
// 分销佣金(一级)
firstMoney?: string;
// 分销佣金(二级)

View File

@@ -65,6 +65,9 @@
'结算金额',
'税费',
'实发金额',
'一级佣金30%',
'二级佣金10%',
'三级佣金60%',
'月份',
'创建时间',
'结算时间',
@@ -87,6 +90,9 @@
`${d.settledPrice}`,
`${d.rate}`,
`${d.payPrice}`,
`${d.firstNickname}(${d.firstUserId}),收益:${d.firstMoney}`,
`${d.secondNickname}(${d.secondUserId}),收益:${d.secondMoney}`,
`${d.thirdNickname}(${d.thirdUserId}),收益:${d.thirdMoney}`,
`${d.month}`,
`${d.createTime}`,
`${d.settleTime}`,