โมดูลการอุทธรณ์ร้องทุกข์

This commit is contained in:
Warunee Tamkoo 2023-12-13 13:26:47 +07:00
parent 3148c63d26
commit 5259db0488
6 changed files with 493 additions and 4 deletions

View file

@ -0,0 +1,36 @@
/**
* Router
*/
const mainPage = () => import("@/modules/06_appealComplain/views/Main.vue");
const addPage = () => import("@/modules/06_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],
},
},
];