60 lines
2.0 KiB
JavaScript
60 lines
2.0 KiB
JavaScript
|
|
// +----------------------------------------------------------------------
|
|||
|
|
// | 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;
|
|||
|
|
|