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