feat: 新增甲方客户管理模块及配套功能
1. 新增甲方客户CRUD接口、前端页面与权限控制 2. 新增发货单管理模块,包含订单状态流转 3. 修复系统菜单名称乱码问题 4. 新增项目启动脚本与数据库初始化脚本 5. 新增相关实体类、Mapper、Service实现 6. 补充项目设计文档与忽略配置
This commit is contained in:
@@ -176,6 +176,19 @@ export const dynamicRoutes = [
|
||||
meta: { title: '甲方报价单详情', activeMenu: '/clientquote' }
|
||||
}]
|
||||
},
|
||||
// ── 甲方客户 ──
|
||||
{
|
||||
path: '/bid/client',
|
||||
component: Layout,
|
||||
permissions: ['bid:client:list'],
|
||||
children: [{
|
||||
path: '',
|
||||
component: () => import('@/views/bid/client/index'),
|
||||
name: 'Client',
|
||||
meta: { title: '甲方客户', activeMenu: '/bid/client' }
|
||||
}]
|
||||
},
|
||||
|
||||
{
|
||||
path: '/bid/comparison/detail',
|
||||
component: Layout,
|
||||
|
||||
Reference in New Issue
Block a user