เพิ่มการส่งข้อมูลไปตรวจสอบ และหน้า verify

This commit is contained in:
Warunee Tamkoo 2024-02-12 14:47:02 +07:00
parent e3d2b99bdc
commit 4f43384c08
3 changed files with 26 additions and 10 deletions

View file

@ -195,6 +195,14 @@ const menuList = readonly<any[]>([
path: "registry",
role: "registry",
},
{
key: 4,
icon: "verified",
activeIcon: "verified",
label: "รายการรอตรวจสอบ",
path: "verified",
role: "registryverify",
},
{
key: 10,
icon: "o_contact_page",

View file

@ -4,6 +4,7 @@
const Main = () => import("@/modules/04_registry/views/Main.vue");
const Detail = () => import("@/modules/04_registry/components/Profile.vue");
const registryVerify = () => import("@/modules/04_registry/views/registry-verify.vue");
// const addOrder = () =>
// import(
// "@/modules/05_placement/components/OrderPlacement/addOrderPlacement.vue"
@ -30,14 +31,14 @@ export default [
Role: "registry",
},
},
// {
// path: "/dismiss-order/add",
// name: "addOrder",
// component: addOrder,
// meta: {
// Auth: true,
// Key: [7],
// Role: "registry",
// },
// },
{
path: "/verified",
name: "verified",
component: registryVerify,
meta: {
Auth: true,
Key: [7],
Role: "registryverify",
},
},
];

View file

@ -0,0 +1,7 @@
<script setup lang="ts">
</script>
<template>
verify
</template>