Commit b56243fa authored by liqiuyu's avatar liqiuyu

feat(*): 配置页面

parent 5d7d5127
This diff is collapsed.
...@@ -8,7 +8,8 @@ import User from '../views/user.vue' ...@@ -8,7 +8,8 @@ import User from '../views/user.vue'
import Layout from '../layout/index.vue' import Layout from '../layout/index.vue'
import Login from '../views/login/index.vue' import Login from '../views/login/index.vue'
import equipmentManagement from '../views/equipmentManagement/index.vue' import equipmentManagement from '../views/equipmentManagement/index.vue'
import myAgency from '@/views/closeManage/myAgency.vue';
import myDone from '@/views/closeManage/myDone.vue';
const routes = [ const routes = [
{ {
path: '/', path: '/',
...@@ -44,13 +45,13 @@ const routes = [ ...@@ -44,13 +45,13 @@ const routes = [
meta: { title: '我的闭环' }, meta: { title: '我的闭环' },
children: [ children: [
{ {
path: '/my-loop/profile', path: '/my-loop/myAgency',
component: HomeView, component: myAgency,
meta: { title: '我的待办' }, meta: { title: '我的待办' },
}, },
{ {
path: '/my-loop/posts', path: '/my-loop/myDone',
component: AboutView, component: myDone,
meta: { title: '我的已办' }, meta: { title: '我的已办' },
}, },
] ]
......
<script setup>
</script>
<template>
</template>
<style scoped lang="scss">
</style>
\ No newline at end of file
<script setup>
</script>
<template>
</template>
<style scoped lang="scss">
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment