เพิ่มการส่งข้อมูลไปตรวจสอบ และหน้า verify
This commit is contained in:
parent
e3d2b99bdc
commit
4f43384c08
3 changed files with 26 additions and 10 deletions
|
|
@ -195,6 +195,14 @@ const menuList = readonly<any[]>([
|
||||||
path: "registry",
|
path: "registry",
|
||||||
role: "registry",
|
role: "registry",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 4,
|
||||||
|
icon: "verified",
|
||||||
|
activeIcon: "verified",
|
||||||
|
label: "รายการรอตรวจสอบ",
|
||||||
|
path: "verified",
|
||||||
|
role: "registryverify",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 10,
|
key: 10,
|
||||||
icon: "o_contact_page",
|
icon: "o_contact_page",
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
const Main = () => import("@/modules/04_registry/views/Main.vue");
|
const Main = () => import("@/modules/04_registry/views/Main.vue");
|
||||||
const Detail = () => import("@/modules/04_registry/components/Profile.vue");
|
const Detail = () => import("@/modules/04_registry/components/Profile.vue");
|
||||||
|
const registryVerify = () => import("@/modules/04_registry/views/registry-verify.vue");
|
||||||
// const addOrder = () =>
|
// const addOrder = () =>
|
||||||
// import(
|
// import(
|
||||||
// "@/modules/05_placement/components/OrderPlacement/addOrderPlacement.vue"
|
// "@/modules/05_placement/components/OrderPlacement/addOrderPlacement.vue"
|
||||||
|
|
@ -30,14 +31,14 @@ export default [
|
||||||
Role: "registry",
|
Role: "registry",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// path: "/dismiss-order/add",
|
path: "/verified",
|
||||||
// name: "addOrder",
|
name: "verified",
|
||||||
// component: addOrder,
|
component: registryVerify,
|
||||||
// meta: {
|
meta: {
|
||||||
// Auth: true,
|
Auth: true,
|
||||||
// Key: [7],
|
Key: [7],
|
||||||
// Role: "registry",
|
Role: "registryverify",
|
||||||
// },
|
},
|
||||||
// },
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
7
src/modules/04_registry/views/registry-verify.vue
Normal file
7
src/modules/04_registry/views/registry-verify.vue
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
verify
|
||||||
|
</template>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue