|
|
@@ -117,6 +117,15 @@ const router = createRouter({
|
|
|
},
|
|
|
component: () => import("../views/voyage/dailyList.vue"),
|
|
|
},
|
|
|
+ {
|
|
|
+ path: "/voyage/dailyDetail",
|
|
|
+ name: "dailyDetail",
|
|
|
+ meta: {
|
|
|
+ title: "日报列表",
|
|
|
+ code: "DAYREPORTDETAIL",
|
|
|
+ },
|
|
|
+ component: () => import("../views/voyage/dailyDetail.vue"),
|
|
|
+ },
|
|
|
{
|
|
|
path: "/voyage/billList",
|
|
|
name: "billList",
|
|
|
@@ -126,6 +135,15 @@ const router = createRouter({
|
|
|
},
|
|
|
component: () => import("../views/voyage/billList.vue"),
|
|
|
},
|
|
|
+ {
|
|
|
+ path: "/voyage/billDetail",
|
|
|
+ name: "billDetail",
|
|
|
+ meta: {
|
|
|
+ title: "单据列表",
|
|
|
+ code: "BILLDETAIL",
|
|
|
+ },
|
|
|
+ component: () => import("../views/voyage/billDetail.vue"),
|
|
|
+ },
|
|
|
{
|
|
|
path: "/voyage/portDeclarationList",
|
|
|
name: "portDeclarationList",
|
|
|
@@ -135,6 +153,15 @@ const router = createRouter({
|
|
|
},
|
|
|
component: () => import("../views/voyage/portDeclarationList.vue"),
|
|
|
},
|
|
|
+ {
|
|
|
+ path: "/voyage/portDeclarationDetail",
|
|
|
+ name: "portDeclarationDetail",
|
|
|
+ meta: {
|
|
|
+ title: "报岗",
|
|
|
+ code: "DEFAULT",
|
|
|
+ },
|
|
|
+ component: () => import("../views/voyage/portDeclarationDetail.vue"),
|
|
|
+ },
|
|
|
],
|
|
|
});
|
|
|
|