123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import Layout from '@/layout/index';
- const customerFundManagementRouter = {
- path: '/customerFundManagement',
- component: Layout,
- redirect: { name: 'customerFundList' },
- name: 'customerFundList',
- alwaysShow: true, // will always show the root menu
- meta: {
- title: 'customerFundList',
- module: 'customerMoneyManagement.customerMoney.view',
- icon: '-kehuzijin'
- },
- children: [
- //客户资金管理列表
- {
- path: 'customerFundList',
- component: () =>
- import(/* webpackChunkName: "applDetail" */ '@/views/customerFundManagement/customerFundList'),
- name: 'customerFundList',
- meta: {
- title: 'customerFundList',
- shortcutEntrance: 'customerFundList',
- module: 'customerMoneyManagement.customerMoney.view',
- permissicon: [],
- keepAlive: true
- },
- hidden: true
- },
- //客户资金管理编辑
- {
- path: 'customerFundEdit',
- component: () =>
- import(/* webpackChunkName: "applDetail" */ '@/views/customerFundManagement/customerFundEdit'),
- name: 'customerFundEdit',
- meta: {
- title: 'customerFundEdit',
- shortcutEntrance: 'customerFundManagement',
- module: 'customerMoneyManagement.customerMoney.edit',
- permissicon: [],
- keepAlive: true
- },
- hidden: true
- },
- //客户资金管理添加
- {
- path: 'customerFundAdd',
- component: () =>
- import(/* webpackChunkName: "applDetail" */ '@/views/customerFundManagement/customerFundAdd'),
- name: 'customerFundAdd',
- meta: {
- title: 'customerFundAdd',
- shortcutEntrance: 'customerFundManagement',
- module: 'customerMoneyManagement.customerMoney.audit',
- permissicon: [],
- keepAlive: true
- // module: 'procurement.sparepart.applDetail'
- },
- hidden: true
- },
- ],
- };
- export default customerFundManagementRouter;
|