|
@@ -9,11 +9,11 @@ import orderDetail from '../views/order/orderDetail.vue'
|
|
|
import ExitView from '../views/exit/index.vue'
|
|
|
import GoodsView from '../views/goods/index.vue'
|
|
|
|
|
|
-const routes: RouteRecordRaw[] = [
|
|
|
+export const routes: RouteRecordRaw[] = [
|
|
|
{ path: '/login', component: LoginView },
|
|
|
{
|
|
|
- path:'/',
|
|
|
- redirect:'/font',
|
|
|
+ path: '/',
|
|
|
+ redirect: '/font',
|
|
|
},
|
|
|
{
|
|
|
path: '/font',
|
|
@@ -40,25 +40,103 @@ const routes: RouteRecordRaw[] = [
|
|
|
},
|
|
|
{
|
|
|
path: '/back',
|
|
|
- redirect:'/back/menu',
|
|
|
+ redirect: '/back/dishManagement/dishCategory',
|
|
|
component: backLayout,
|
|
|
- children: [
|
|
|
- { path: 'menu', component: MenuView },
|
|
|
+ children:[
|
|
|
+ // 菜品管理相关
|
|
|
{
|
|
|
- path: 'order',
|
|
|
+ path: 'dishManagement',
|
|
|
+ name: 'DishManagement',
|
|
|
+ meta: {
|
|
|
+ title: '菜品管理',
|
|
|
+ icon: 'Dish'
|
|
|
+ },
|
|
|
children: [
|
|
|
- {
|
|
|
- path: 'orderList',
|
|
|
+ {
|
|
|
+ path: 'dishCategory',
|
|
|
+ name: 'DishCategory',
|
|
|
+ component: ()=>import('@/views/dishManagement/dishCategory.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '菜品分类',
|
|
|
+ icon: 'Dish'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'dishInfo',
|
|
|
+ name: 'DishInfo',
|
|
|
+ component: ()=>import("@/views/dishManagement/dishInfo/index.vue"),
|
|
|
+ meta: {
|
|
|
+ title: '菜品信息',
|
|
|
+ icon: 'Dish'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'specificationManagement',
|
|
|
+ name: 'SpecificationManagement',
|
|
|
component: OrderView,
|
|
|
+ meta: {
|
|
|
+ title: '规格管理',
|
|
|
+ icon: 'Dish'
|
|
|
+ }
|
|
|
},
|
|
|
- {
|
|
|
- path: 'orderDetail',
|
|
|
- component: orderDetail,
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ // 桌子管理相关
|
|
|
+ {
|
|
|
+ path: 'tableManagement',
|
|
|
+ name: 'TableManagement',
|
|
|
+ meta: {
|
|
|
+ title: '桌子管理',
|
|
|
+ icon: 'Table'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'areaManagement',
|
|
|
+ name: 'AreaManagement',
|
|
|
+ component: OrderView,
|
|
|
+ meta: {
|
|
|
+ title: '区域管理',
|
|
|
+ icon: 'Table'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'tableSettings',
|
|
|
+ name: 'TableSettings',
|
|
|
+ component: OrderView,
|
|
|
+ meta: {
|
|
|
+ title: '桌子设置',
|
|
|
+ icon: 'Table'
|
|
|
+ }
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
- { path: 'exit', component: ExitView },
|
|
|
- { path: 'goods', component: GoodsView },
|
|
|
+ {
|
|
|
+ path: 'materialManagement',
|
|
|
+ name: 'MaterialManagement',
|
|
|
+ component: OrderView,
|
|
|
+ meta: {
|
|
|
+ title: '物料管理',
|
|
|
+ icon: 'Material'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'orderManagement',
|
|
|
+ name: 'OrderManagement',
|
|
|
+ component: OrderView,
|
|
|
+ meta: {
|
|
|
+ title: '订单管理',
|
|
|
+ icon: 'Order'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'salesStatistics',
|
|
|
+ name: 'SalesStatistics',
|
|
|
+ component: OrderView,
|
|
|
+ meta: {
|
|
|
+ title: '销售统计',
|
|
|
+ icon: 'Statistics'
|
|
|
+ }
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
{
|