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 inOutboundDetail = (resolve) => require(["@/views/reportForm/inboundOutboundDetail/index"], resolve) // 出入库明细
|
| const appconfig = [
| {
| path: "/productManage/product",
| name: "product",
| component: product,
| meta: {
| title: "产品管理"
| }
| },
| {
| path: "/reportForm/inOutboundDetail",
| name: "inOutboundDetail",
| component: inOutboundDetail,
| meta: {
| title: "出入库明细"
| }
| }
| ]
|
| export default appconfig
|
|