@@ -77,6 +77,18 @@ const remainingRouter = [
}
]
},
+ {
+ path: '/entrances',
+ children: [
+ component: () => import('@/views/entrances/index'),
+ meta: {
+ title: '门墩儿应用中心'
+ }
+ ]
+ },
setLoginType(remainingRouter, 'noLogin')
@@ -0,0 +1,10 @@
+<!-- 门墩儿入口管理页 -->
+<template>
+ <div>vue3PageInit</div>
+</template>
+
+<script setup>
+defineOptions({name: 'entrances-index'})
+</script>
+<style lang="scss" scoped>
+</style>