feat(cms): 新增网站订单模块并完善相关功能

- 在开发环境配置文件中启用API URL
- 新增网站订单编辑组件,支持添加和修改订单功能
- 调整发货模态框宽度为50%
- 将页面标题从"网宿软件"更新为"麦芽知电子商务"
- 重构网站订单模型定义,增加多个订单相关字段
- 更新网站订单API接口,移除模块前缀
- 在商品模型中新增分销佣金相关字段
- 实现完整的网站订单管理页面,包含表格展示和操作功能
This commit is contained in:
2026-01-28 17:01:08 +08:00
parent f3a59f9755
commit 51c6f3fa2f
14 changed files with 1773 additions and 60 deletions

View File

@@ -241,25 +241,25 @@
align: 'center'
},
{
title: '一级佣金(10%)',
title: '一级佣金',
dataIndex: 'firstNickname',
key: 'firstNickname',
align: 'center'
},
{
title: '二级佣金(5%)',
title: '二级佣金',
dataIndex: 'secondNickname',
key: 'secondNickname',
align: 'center'
},
{
title: '一级门店分红(2%/3%)',
title: '一级门店分红',
dataIndex: 'firstDividendUserName',
key: 'firstDividendUserName',
align: 'center'
},
{
title: '二级门店分红(1%)',
title: '二级门店分红',
dataIndex: 'secondDividendUserName',
key: 'secondDividendUserName',
align: 'center'