page: 新增页面: 📄 订单管理
This commit is contained in:
parent
96ef60c289
commit
b6f49d9dad
|
@ -9,7 +9,12 @@ const routes: Array<RouteRecordRaw> = [
|
||||||
{
|
{
|
||||||
path: 'statistics',
|
path: 'statistics',
|
||||||
name: 'statistics',
|
name: 'statistics',
|
||||||
component: () => import(/* webpackChunkName: "login" */ '@/views/statistics/index.vue'),
|
component: () => import(/* webpackChunkName: "statistics" */ '@/views/statistics/index.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'order',
|
||||||
|
name: 'order',
|
||||||
|
component: () => import(/* webpackChunkName: "order" */ '@/views/order/index.vue'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
<script lang="ts" setup></script>
|
||||||
|
|
||||||
|
<template>订单管理</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
Loading…
Reference in New Issue