|
@@ -155,6 +155,66 @@ export function routesLXF() {
|
|
|
name: "添加发票",
|
|
|
component: () => import("../views/purchase-payment/invoice/add.vue"),
|
|
|
},
|
|
|
+ {
|
|
|
+ path: "account",
|
|
|
+ name: "资金账户",
|
|
|
+ component: () => import("../views/fund/account/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "accountAdd",
|
|
|
+ name: "添加账户",
|
|
|
+ component: () => import("../views/fund/account/add.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "customerFile",
|
|
|
+ name: "客户档案",
|
|
|
+ component: () => import("../views/customer/file/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "customerFileAdd",
|
|
|
+ name: "添加客户",
|
|
|
+ component: () => import("../views/customer/file/add.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "customerFileDetail",
|
|
|
+ name: "客户详情",
|
|
|
+ component: () => import("../views/customer/file/detail.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "customerFileRecords",
|
|
|
+ name: "添加跟进记录",
|
|
|
+ component: () => import("../views/customer/file/addRecords.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "highseas",
|
|
|
+ name: "公海客户",
|
|
|
+ component: () => import("../views/customer/highseas/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "privatesea",
|
|
|
+ name: "私海客户",
|
|
|
+ component: () => import("../views/customer/privatesea/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "accountPayment",
|
|
|
+ name: "打款",
|
|
|
+ component: () => import("../views/fund/account-payment/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "accountPaymentAdd",
|
|
|
+ name: "添加打款",
|
|
|
+ component: () => import("../views/fund/account-payment/add.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "accountPaymentDetail",
|
|
|
+ name: "打款详情",
|
|
|
+ component: () => import("../views/fund/account-payment/detail.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "funds",
|
|
|
+ name: "请款",
|
|
|
+ component: () => import("../views/fund/funds/index.vue"),
|
|
|
+ },
|
|
|
];
|
|
|
return routesLXF;
|
|
|
}
|