ui เพิ่มรอบการเสนอขอพระราชทานเครื่องราชอิสริยาภรณ์

This commit is contained in:
AnandaTon 2023-07-17 10:38:48 +07:00
parent 8e7a74fe85
commit d626279c6c
5 changed files with 220 additions and 13 deletions

View file

@ -3,6 +3,10 @@
*/
const Main = () => import("@/modules/07_insignia/views/Main.vue");
const insigniaProposals = () =>
import("@/modules/07_insignia/views/1_Proposals/listProposals.vue");
const roundAdd = () =>
import("@/modules/07_insignia/views/1_Proposals/addProposals.vue");
export default [
{
@ -15,4 +19,24 @@ export default [
Role: "insignia",
},
},
{
path: "/insignia/round-proposals",
name: "insigniaProposals",
component: insigniaProposals,
meta: {
Auth: true,
Key: [7.1],
Role: "insignia",
},
},
{
path: "/insignia/round/add",
name: "roundAdd",
component: roundAdd,
meta: {
Auth: true,
Key: [7.1],
Role: "insignia",
},
},
];