yangfeng
2023-09-15 b823a11d74b6623fadcfab27150cdbb0ad9766f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// const type from '@/router/deployCode'
 
const product = (resolve) => require(["@/views/productManage/product/index"], resolve) // 产品管理
const overviewList = (resolve) => require(["@/views/overview/OverviewListView"], resolve) // 概述列表页
 
const appconfig = [
  {
    path: "/productManage/product",
    name: "product",
    component: product,
    meta: {
      title: "产品管理"
    }
  },
  {
    path: "/overview/overviewList",
    name: "overviewList",
    component: overviewList,
    meta: {
      title: "采购入库"
    }
  }
]
 
export default appconfig