From 4581244bb4330b7837ab4ccc3aa377e3a3d6972f Mon Sep 17 00:00:00 2001 From: waruneeta Date: Fri, 8 Sep 2023 15:24:55 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9?= =?UTF-8?q?=E0=B8=A5=E0=B9=80=E0=B8=A1=E0=B8=99=E0=B8=B9=E0=B8=A2=E0=B9=88?= =?UTF-8?q?=E0=B8=AD=E0=B8=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/interface/request/main/main.ts | 174 +++++++++-------------------- 1 file changed, 53 insertions(+), 121 deletions(-) diff --git a/src/interface/request/main/main.ts b/src/interface/request/main/main.ts index 6027ac42..218399f5 100644 --- a/src/interface/request/main/main.ts +++ b/src/interface/request/main/main.ts @@ -468,131 +468,63 @@ const menuList = readonly([ // }, ]); -const tabList = readonly([ +const tabList = readonly([ { - key: 1, - label: "ข้อมูลทั่วไป", - tag: "information", + no: 1, + label: "การเข้าสู่ระบบ", + path: "/manual", + childern: [ + { + no: 1.1, + label: "การเข้าสู่ระบบโดยใช้ User name และ Password", + path: "/login/log", + }, + { + no: 1.2, + label: "การเปลี่ยนรหัสผ่านผู้ใช้งาน", + path: "/login/password", + }, + ] + }, + { + no: 2, + label: "ระบบข้อมูลหลัก", + path: "/datamain", + childern: [ + { + no: 2.1, + label: "การเข้าสู่ระบบโดยใช้ User name และ Password", + path: "/login/log", + }, + ] }, { - key: 19, - label: "ประวัติการเปลี่ยนชื่อ", - tag: "oldName", - }, - { - key: 16, - label: "ข้อมูลราชการ", - tag: "government", - }, - { - key: 17, - label: "ข้อมูลที่อยู่", - tag: "address", - }, - { - key: 18, - label: "ข้อมูลครอบครัว", - tag: "family", - }, - { - key: 15, - label: "ใบอนุญาตประกอบอาชีพ", - tag: "certicate", - }, - { - key: 2, - label: "ประวัติการศึกษา", - tag: "education", - }, - { - key: 3, - label: "การฝึกอบรม/ดูงาน", - tag: "training", - }, - { - key: 4, - label: "เครื่องราชอิสริยาภรณ์", - tag: "insignia", - }, - { - key: 5, - label: "ประกาศเกียรติคุณ", - tag: "coined", - }, - { - key: 6, - label: "ผลการประเมินปฏิบัติราชการ", - tag: "assessment", - }, - { - key: 7, - label: "ตำแหน่ง/เงินเดือน/ค่าจ้าง", - tag: "position", - }, - { - key: 8, - label: "วินัย", - tag: "rule", - }, - { - key: 9, - label: "การลา", - tag: "leave", - }, - { - key: 10, - label: "ความสามารถพิเศษ", - tag: "talent", - }, - { - key: 11, - label: "ปฎิบัติราชการพิเศษ", - tag: "work", - }, - { - key: 12, - label: "บันทึกวันที่ไม่ได้รับเงินเดือนฯ", - tag: "record", - }, - { - key: 13, - label: "อื่นๆ", - tag: "other", - }, - { - key: 14, - label: "เอกสารหลักฐาน", - tag: "document", + no: 5, + label: "xxx", + path: "/xxx", + childern: [ + { + no: 5.1, + label: "การเข้าสู่ระบบโดยใช้ User name และ Password", + path: "/login/log", + childern: [ + { + no: 5.11, + label: "การเข้าสู่ระบบโดยใช้ User name และ Password", + path: "/login/log", + + }, + ] + }, + { + no: 5.2, + label: "การเข้าสู่ระบบโดยใช้ User name และ Password", + path: "/login/log", + } + ] }, + ]); -const tabListPlacement = readonly([ - { - key: 1, - label: "ข้อมูลทั่วไป", - tag: "information", - }, - { - key: 2, - label: "ใบอนุญาตประกอบอาชีพ", - tag: "certicate", - }, - { - key: 3, - label: "ประวัติการศึกษา", - tag: "education", - }, - { - key: 4, - label: "ผลการสอบ", - tag: "examresult", - }, - { - key: 5, - label: "การคัดกรองคุณสมบัติ", - tag: "qualification", - }, -]); - -export { menuList, tabList, tabListPlacement }; +export { menuList, tabList }; export type { ScrollType, tabType, menuType, notiType, optionType };