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

@@ -3,7 +3,7 @@
<a-modal
:visible="visible"
title="订单发送货"
width="600px"
width="50%"
:confirm-loading="loading"
@update:visible="updateVisible"
@ok="handleSubmit"

View File

@@ -324,14 +324,12 @@
title: '订单编号',
dataIndex: 'orderNo',
key: 'orderNo',
align: 'center',
width: 200
align: 'center'
},
{
title: '商品信息',
dataIndex: 'orderGoods',
key: 'orderGoods',
width: 360
key: 'orderGoods'
},
{
title: '实付金额',
@@ -390,15 +388,13 @@
dataIndex: 'createTime',
key: 'createTime',
align: 'center',
width: 180,
sorter: true,
ellipsis: true,
customRender: ({ text }) => toDateString(text)
},
{
title: '操作',
key: 'action',
width: 280,
width: 220,
fixed: 'right',
align: 'center',
hideInSetting: true