feat: refactor outbound selection to cart mode and update BomManage route
Co-authored-by: aider (openai/DeepSeek-V3.2-Thinking) <aider@aider.chat>
This commit is contained in:
@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
|
||||
import type { RouteRecordRaw } from 'vue-router'
|
||||
import Layout from '@/layout/index.vue'
|
||||
import { useUserStore } from '@/stores/user'
|
||||
import BomManage from '@/views/bom/BomManage.vue'
|
||||
|
||||
const routes: Array<RouteRecordRaw> = [
|
||||
// 1. 登录页
|
||||
@ -130,8 +131,8 @@ const routes: Array<RouteRecordRaw> = [
|
||||
{
|
||||
path: 'manage',
|
||||
name: 'BomManage',
|
||||
component: () => import('@/views/bom/BomManage.vue'),
|
||||
meta: { title: '配方管理' }
|
||||
component: BomManage,
|
||||
meta: { title: 'BOM配方管理', icon: 'list' }
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user