แก้ไขอุทธรณ์ร้องทุกข์

This commit is contained in:
Warunee Tamkoo 2023-12-13 18:06:21 +07:00
parent 27f564588c
commit 7777b27cda
7 changed files with 45 additions and 33 deletions

View file

@ -1,36 +0,0 @@
/**
* 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],
},
},
];