ปรับ css เพิ่มเติม

This commit is contained in:
Tanyalak 2023-08-16 17:01:57 +07:00
parent 4bdbd6c0bc
commit df2dd3aa25
7 changed files with 27 additions and 57 deletions

View file

@ -5,7 +5,7 @@ import { defineAsyncComponent } from "vue";
// const Main = () => import("@/modules/08_registryEmployee/views/Main.vue");
// const Detail = () => import("@/modules/08_registryEmployee/views/Detail.vue");
const Main = defineAsyncComponent(
const MainEmployee = defineAsyncComponent(
() => import("@/modules/08_registryEmployee/views/Main.vue")
);
const Detail = defineAsyncComponent(
@ -17,12 +17,12 @@ const EditDetail = defineAsyncComponent(
export default [
{
path: "/registryEmployee",
name: "registryEmployee",
component: Main,
path: "/employee",
name: "employee",
component: MainEmployee,
meta: {
Auth: true,
Key: [9],
Key: [11],
Role: "registryEmployee",
},
},
@ -37,7 +37,7 @@ export default [
// },
// },
{
path: "/registryEmployee/add",
path: "/employee/add",
name: "registryEmployeeAdd",
component: Detail,
meta: {
@ -47,7 +47,7 @@ export default [
},
},
{
path: "/registryEmployee/Edit/:Id",
path: "/employee/Edit/:Id",
name: "registryEmployeeEdit",
component: EditDetail,
meta: {