FundsRouter.js 3.79 KB
Newer Older
WeiCong committed
1
const BusRouter = [
wangweidong committed
2
  { path: 'inffxd', component: () => import("./Inffxd/views"), name: 'Inffxd', meta: { title: '资结售汇报表交易查询' }, module: 'Funds' },
wangweidong committed
3
  { path: 'infftd', component: () => import("./Infftd1/views"), name: 'Infftd1', meta: { title: '资金拆借/头寸调拨报表交易查询' }, module: 'Funds' },
wangweidong committed
4
  { path: 'fttatt', component: () => import("./Fttatt/views"), name: 'Fttatt', meta: { title: 'Fttatt' }, module: 'Funds' },
wangweidong committed
5 6 7 8 9 10 11
  { path: 'fttfcm', component: () => import("./Fttfcm/views"), name: 'Fttfcm', meta: { title: '资金定存拆借登记及确认交易' }, module: 'Funds' },
  { path: 'fttfcn', component: () => import("./Fttfcn/views"), name: 'Fttfcn', meta: { title: '定存拆借销账交易' }, module: 'Funds' },
  { path: 'fttfee', component: () => import("./Fttfee/views"), name: 'Fttfee', meta: { title: '费用结算' }, module: 'Funds' },
  { path: 'fttfmt', component: () => import("./Fttfmt/views"), name: 'Fttfmt', meta: { title: '定存拆借到期交易' }, module: 'Funds' },
  { path: 'fttfre', component: () => import("./Fttfre/views"), name: 'Fttfre', meta: { title: '拆借函电往来' }, module: 'Funds' },
  { path: 'fttpcm', component: () => import("./Fttpcm/views"), name: 'Fttpcm', meta: { title: '头寸调拨登记确认交易' }, module: 'Funds' },
  { path: 'fttpcn', component: () => import("./Fttpcn/views"), name: 'Fttpcn', meta: { title: '头寸调拨销账交易' }, module: 'Funds' },
wangweidong committed
12 13 14
  { path: 'fxtatt', component: () => import("./Fxtatt/views"), name: 'Fxtatt', meta: { title: 'Fxtatt' }, module: 'Funds' },
  { path: 'fxteop', component: () => import("./Fxteop/views"), name: 'Fxteop', meta: { title: '代客外汇买卖录入' }, module: 'Funds' },
  { path: 'fxteqo', component: () => import("./Fxteqo/views"), name: 'Fxteqo', meta: { title: '代客外汇买卖报价' }, module: 'Funds' },
15
  { path: 'fxtfcm', component: () => import("./Fxtfcm/views"), name: 'Fxtfcm', meta: { title: '外币兑换平盘确认' }, module: 'Funds' },
wangweidong committed
16
  { path: 'fxtfcn', component: () => import("./Fxtfcn/views"), name: 'Fxtfcn', meta: { title: '外币兑换平盘销账' }, module: 'Funds' },
wangweidong committed
17
  { path: 'infcrd', component: () => import("./Infcrd/views"), name: 'Infcrd', meta: { title: '清算入口交易' }, module: 'Funds' },
WeiCong committed
18 19 20 21 22 23 24
  {
    path: "fxtfop",
    component: () => import("./Fxtfop/views"),
    name: "fxtfop",
    meta: { title: "外币兑换平盘登记" },
    module: "Funds",
  },
wangweidong committed
25 26
  { path: 'fxtlcm', component: () => import("./Fxtlcm/views"), name: 'Fxtlcm', meta: { title: '结售汇平盘确认交易' }, module: 'Funds' },
  { path: 'fxtlcn', component: () => import("./Fxtlcn/views"), name: 'Fxtlcn', meta: { title: '结售汇平盘销账交易' }, module: 'Funds' },
WeiCong committed
27 28 29 30 31 32 33
  {
    path: "fxtlop",
    component: () => import("./Fxtlop/views"),
    name: "Fxtlop",
    meta: { title: "结售汇平盘登记" },
    module: "Funds",
  },
wangweidong committed
34 35
  { path: 'fxtssb', component: () => import("./Fxtssb/views"), name: 'Fxtssb', meta: { title: '即期结汇交易' }, module: 'Funds' },
  { path: 'fxtsss', component: () => import("./Fxtsss/views"), name: 'Fxtsss', meta: { title: '即期售汇交易' }, module: 'Funds' },
李少勇 committed
36 37
  { path: 'crtcri', component: () => import("./Crtcri/views"), name: 'Crtcri', meta: { title: '汇入清算' }, module: 'Funds' },
  { path: 'crtcro', component: () => import("./Crtcro/views"), name: 'Crtcro', meta: { title: '汇出清算' }, module: 'Funds' },
wangweidong committed
38
  { path: 'fxtsqo', component: () => import("./Fxtsqo/views"), name: 'Fxtsqo', meta: { title: '结售汇报价' }, module: 'Funds' },
zhaoqian committed
39 40
  { path: 'crtcbk', component: () => import("./Crtcbk/views"), name: 'Crtcbk', meta: { title: '退汇清算' }, module: 'Funds' },
  { path: 'crtctf', component: () => import("./Crtctf/views"), name: 'Crtctf', meta: { title: '转汇清算' }, module: 'Funds' },
WeiCong committed
41
];
hewei committed
42
export default BusRouter