Merge branch 'develop' into nice_dev

# Conflicts:
#	src/modules/07_insignia/router.ts
This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-07-17 14:59:24 +07:00
commit d62883f5a1
27 changed files with 2182 additions and 952 deletions

View file

@ -5,6 +5,9 @@
const Main = () => import("@/modules/07_insignia/views/Main.vue");
const ReportView = () => import("../07_insignia/components/report/ReportView.vue")
const report_01 = () => import("../07_insignia/components/report/Report_01.vue")
const ResultInsignia = () =>
import("@/modules/07_insignia/components/ResultInsignia.vue");
const Coin = () => import("@/modules/07_insignia/components/Coin.vue");
export default [
{
@ -24,6 +27,15 @@ export default [
meta: {
Auth: true,
Key: [7.1],
},
},
{
path: "/insignia/result-insignia",
name: "result-insignia",
component: ResultInsignia,
meta: {
Auth: true,
Key: [7],
Role: "insignia",
},
},
@ -37,5 +49,14 @@ export default [
Role: "insignia",
},
},
{
path: "/insignia/coin",
name: "coin",
component: Coin,
meta: {
Auth: true,
Key: [7],
Role: "insignia",
},
},
];