36 lines
656 B
TypeScript
36 lines
656 B
TypeScript
/**
|
|
* Router ขอโอน
|
|
*/
|
|
|
|
const mainPage = () => import("@/modules/07_appealComplain/views/Main.vue");
|
|
const addPage = () => import("@/modules/07_appealComplain/views/Add.vue");
|
|
|
|
export default [
|
|
{
|
|
path: "/appeal-complain",
|
|
name: "appealComplain",
|
|
component: mainPage,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [7],
|
|
},
|
|
},
|
|
{
|
|
path: "/appeal-complain/add",
|
|
name: "appealComplainAdd",
|
|
component: addPage,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [7],
|
|
},
|
|
},
|
|
{
|
|
path: "/appeal-complain/:id",
|
|
name: "appealComplainView",
|
|
component: addPage,
|
|
meta: {
|
|
Auth: true,
|
|
Key: [7],
|
|
},
|
|
},
|
|
];
|