从 shccd159 合并 backend-adminend 子项目到 main

Made-with: Cursor
This commit is contained in:
apple
2026-03-16 11:32:11 +08:00
parent d00d5119ec
commit e8563e4fda
733 changed files with 171781 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import Layout from '@/layout';
const consignmentRouter = {
path: '/consignment',
component: Layout,
redirect: '/consignment/merchandise',
name: 'Consignment',
meta: {
title: '商品寄卖服务',
icon: 'clipboard',
},
children: [
{
path: 'merchandise',
component: () => import('@/views/consignment/merchandise/index'),
name: 'Merchandise',
meta: { title: '寄售商品管理', icon: '' },
},
{
path: 'merchandise/detail',
component: () => import('@/views/consignment/merchandise/detail'),
name: 'MerchandiseDetail',
meta: { title: '寄售商品详情', noCache: true, activeMenu: '/consignment/merchandise' },
hidden: true,
},
{
path: 'withdraw',
component: () => import('@/views/consignment/withdraw/index'),
name: 'Withdraw',
meta: { title: '提现管理', icon: '' },
},
{
path: 'withdraw/detail',
component: () => import('@/views/consignment/withdraw/detail'),
name: 'WithdrawDetail',
meta: { title: '提现详情', noCache: true, activeMenu: '/consignment/withdraw' },
hidden: true,
},
{
path: 'financial-log',
component: () => import('@/views/consignment/financial-log/index'),
name: 'FinancialLog',
meta: { title: '财务日志管理', icon: '' },
},
],
};
export default consignmentRouter;