no message

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-08 18:19:40 +07:00
parent b3cfb06dc1
commit 259c69d0b0
5 changed files with 18 additions and 20 deletions

View file

@ -464,7 +464,7 @@ const menuList = readonly<any[]>([
// }, // },
// ], // ],
// }, // },
// ], // ],
// }, // },
]); ]);
@ -472,7 +472,7 @@ const tabList = readonly<any[]>([
{ {
no: 1, no: 1,
label: "การเข้าสู่ระบบ", label: "การเข้าสู่ระบบ",
path: "", path: "/manual",
childern: [ childern: [
{ {
no: 1.1, no: 1.1,
@ -505,13 +505,13 @@ const tabList = readonly<any[]>([
path: "/login/noti", path: "/login/noti",
} }
] ]
}, },
{ {
no: 2, no: 2,
label: "ระบบข้อมูลหลัก", label: "ระบบข้อมูลหลัก",
path: "", path: "/Datamain",
childern: [ childern: [
{ {
no: 2.1, no: 2.1,
@ -555,7 +555,7 @@ const tabList = readonly<any[]>([
{ {
no: 3, no: 3,
label: "ระบบโครงสร้างอัตรากำลัง", label: "ระบบโครงสร้างอัตรากำลัง",
path: "", path: "/Structuremain",
childern: [ childern: [
{ {
no: 3.1, no: 3.1,
@ -605,7 +605,7 @@ const tabList = readonly<any[]>([
{ {
no: 4, no: 4,
label: "ระบบทะเบียนประวัติ", label: "ระบบทะเบียนประวัติ",
path: "", path: "/Registrationmain",
childern: [ childern: [
{ {
no: 4.1, no: 4.1,
@ -644,7 +644,7 @@ const tabList = readonly<any[]>([
{ {
no: 5, no: 5,
label: "หน้าจัดการระบบสรรหา", label: "หน้าจัดการระบบสรรหา",
path: "", path: "/Recruitmain",
childern: [ childern: [
{ {
no: 5.1, no: 5.1,
@ -664,7 +664,7 @@ const tabList = readonly<any[]>([
{ {
no: 5.31, no: 5.31,
label: "จัดการรอบสอบการแข่งขัน", label: "จัดการรอบสอบการแข่งขัน",
path: "/Recruit/managecompet", path: "/Recruit/managecompet",
}, },
{ {
no: 5.32, no: 5.32,
@ -681,7 +681,7 @@ const tabList = readonly<any[]>([
{ {
no: 5.41, no: 5.41,
label: "จัดการรอบคัดเลือก", label: "จัดการรอบคัดเลือก",
path: "/Recruit/qualifiers", path: "/Recruit/qualifiers",
}, },
{ {
no: 5.42, no: 5.42,

View file

@ -6,7 +6,7 @@ const text = ref("");
<template> <template>
<div class="row col-12"> <div class="row col-12">
<div class="col-9"> <div class="col-12">
<div class="toptitle text-dark col-12 row items-center"> <div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> </div>

View file

@ -6,7 +6,7 @@ const text = ref("");
<template> <template>
<div class="row col-12"> <div class="row col-12">
<div class="col-9"> <div class="col-12">
<div class="toptitle text-dark col-12 row items-center"> <div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> </div>

View file

@ -6,7 +6,7 @@ const text = ref("");
<template> <template>
<div class="row col-12"> <div class="row col-12">
<div class="col-9"> <div class="col-12">
<div class="toptitle text-dark col-12 row items-center"> <div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> </div>

View file

@ -87,20 +87,18 @@ const tabScroll = () => {
}; };
const tabScroll2 = () => { const tabScroll2 = () => {
// let pathName = ""; let pathName = "";
// let childernName: any = []; // let childernName: any = [];
// tabList.forEach((e: any) => { // tabList.forEach((e: any) => {
// childernName = e.childern; // childernName = e.childern;
// }); // });
// console.log(childernName); // console.log(childernName);
// pathName = childernName.find((e: any) => console.log(e)); pathName = tabList.find((e: any) => e.path === route.path);
// console.log(pathName); if (pathName) {
return true;
// if (pathName) { }
// return true; // return route.name == "manual";
// }
return route.name == "manual";
}; };
/** /**