1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-12 22:29:59 +08:00
Elsio Sanchez 210443b395
Add product information form (#551)
* Add Form The PorductInfo

* remove console.log
2020-12-01 19:39:39 -04:00

121 lines
2.4 KiB
JavaScript

/* Layout */
import Layout from '@/layout'
const staticRoutes = [
{
path: '*',
redirect: '/404',
hidden: true
},
{
path: '/ProcessActivity',
component: Layout,
meta: {
title: 'ProcessActivity',
icon: 'tree-table',
noCache: true,
breadcrumb: false
},
redirect: '/ProcessActivity/index',
children: [
{
path: 'index',
component: () => import('@/views/ADempiere/ProcessActivity'),
name: 'ProcessActivity',
meta: {
title: 'ProcessActivity',
icon: 'tree-table',
noCache: true,
isIndex: true
}
}
]
},
{
path: '/report-viewer',
component: Layout,
hidden: true,
redirect: 'report-viewer/:processId/:instanceUuid/:fileName/:tableName?',
children: [
{
path: ':processId/:instanceUuid/:fileName/:tableName?',
component: () => import('@/views/ADempiere/ReportViewer'),
name: 'Report Viewer',
meta: {
title: 'ReportViewer',
reportFormat: ''
}
}
]
},
{
path: '/test',
component: Layout,
hidden: true,
children: [
{
path: '/test',
component: () => import('@/views/ADempiere/Test'),
name: 'Test View',
meta: {
title: 'Test View',
isIndex: true
}
}
]
},
{
path: '/PriceChecking',
component: Layout,
hidden: false,
children: [
{
path: '/PriceChecking',
component: () => import('@/views/ADempiere/Form'),
name: 'PriceChecking',
meta: {
icon: 'shopping',
title: 'PriceChecking',
isIndex: true
}
}
]
},
{
path: '/BarcodeReader',
component: Layout,
hidden: true,
children: [
{
path: '/BarcodeReader',
component: () => import('@/views/ADempiere/Form'),
name: 'BarcodeReader',
meta: {
icon: 'search',
title: 'BarcodeReader',
isIndex: true
}
}
]
},
{
path: '/ProductInfo',
component: Layout,
hidden: false,
children: [
{
path: '/ProductInfo',
component: () => import('@/views/ADempiere/Form'),
name: 'ProductInfo',
meta: {
title: 'ProductInfo',
isIndex: true
}
}
]
}
]
export default staticRoutes