InfoRouter.js 3.3 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
const DisplayRouter = [
    {
        name: "InfoLid",
        path: "lidinf",
        component: () => import("./InfoLid.vue"),
        meta: {keepAlive: true, title: "Info-进口信用证"}
    },
    {
        name: "InfoBrd",
        path: "brdinf",
        component: () => import("./InfoBrd.vue"),
        meta: {keepAlive: true, title: "Info-进口信用证单据"}
    },
    {
        name: "InfoLed",
        path: "ledinf",
        component: () => import("./InfoLed.vue"),
        meta: {keepAlive: true, title: "Info-出口信用证"}
    },
    {
        name: "InfoBed",
        path: "bedinf",
        component: () => import("./InfoBed.vue"),
        meta: {keepAlive: true, title: "Info-出口信用证单据"}
    },
    {
        name: "InfoLtd",
        path: "ltdinf",
        component: () => import("./InfoLtd.vue"),
        meta: {keepAlive: true, title: "Info-转让信用证"}
    },
    {
        name: "InfoBtd",
        path: "btdinf",
        component: () => import("./InfoBtd.vue"),
        meta: {keepAlive: true, title: "Info-转让信用证单据"}
    },
    {
        name: "InfoDid",
        path: "didinf",
        component: () => import("./InfoDid.vue"),
        meta: {keepAlive: true, title: "Info-国内证买方"}
    },
    {
        name: "InfoBdd",
        path: "bddinf",
        component: () => import("./InfoBdd.vue"),
        meta: {keepAlive: true, title: "Info-国内证买方单据"}
    },
    {
        name: "InfoDed",
        path: "dedinf",
        component: () => import("./InfoDed.vue"),
        meta: {keepAlive: true, title: "Info-国内证卖方"}
    },
    {
        name: "InfoBfd",
        path: "bfdinf",
        component: () => import("./InfoBfd.vue"),
        meta: {keepAlive: true, title: "Info-国内证卖方单据"}
    },
    {
        name: "InfoCpd",
        path: "cpdinf",
        component: () => import("./InfoCpd.vue"),
        meta: {keepAlive: true, title: "Info-汇款"}
    },
    {
        name: "InfoBcd",
        path: "bcdinf",
        component: () => import("./InfoBcd.vue"),
        meta: {keepAlive: true, title: "Info-进口代收"}
    },
    {
        name: "InfoBod",
        path: "bodinf",
        component: () => import("./InfoBod.vue"),
        meta: {keepAlive: true, title: "Info-出口托收"}
    },
    {
        name: "InfoCcd",
        path: "ccdinf",
        component: () => import("./InfoCcd.vue"),
        meta: {keepAlive: true, title: "Info-光票托收"}
    },
    {
        name: "InfoTrd",
        path: "trdinf",
        component: () => import("./InfoTrd.vue"),
        meta: {keepAlive: true, title: "Info-进口融资"}
    },
    {
        name: "InfoBpd",
        path: "bpdinf",
        component: () => import("./InfoBpd.vue"),
        meta: {keepAlive: true, title: "Info-出口融资"}
    },
    {
        name: "InfoDfd",
        path: "dfdinf",
        component: () => import("./InfoDfd.vue"),
        meta: {keepAlive: true, title: "Info-委托方代付"}
    },
    {
        name: "InfoJsd",
        path: "jsdinf",
        component: () => import("./InfoJsd.vue"),
        meta: {keepAlive: true, title: "Info-结售汇"}
    },
    {
        name: "InfoMcd",
        path: "mcdinf",
        component: () => import("./InfoMcd.vue"),
        meta: {keepAlive: true, title: "Info-万能交易"}
    },
];

export default DisplayRouter;