12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/stock/selfPreparedMedicine',
- component: Layout,
- redirect: 'noredirect',
- name: 'selfPreparedMedicine',
- alwaysShow: true,
- meta: {
- title: 'selfPreparedMedicine',
- icon: 'stock',
- isChild: true
- },
- children: [
- {
- path: '/stock/selfPreparedMedicineIndex',
- component: () => import('@/xt_pages/stock/selfPreparedMedicine/index'),
- name: 'selfPreparedMedicineIndex',
- meta: { title: 'selfPreparedMedicineIndex', noCache: true }
- },
- {
- path: '/stock/selfPreparedMedicineQuery',
- component: () => import('@/xt_pages/stock/selfPreparedMedicine/query'),
- name: 'selfPreparedMedicineQuery',
- meta: { title: 'selfPreparedMedicineQuery', noCache: true }
- },
- {
- path: '/stock/selfPreparedMedicineQueryPrint',
- component: () => import('@/xt_pages/stock/selfPreparedMedicine/queryPrint'),
- name: 'selfPreparedMedicineQueryPrint',
- hidden: true,
- is_menu: false,
- meta: { title: 'selfPreparedMedicineQueryPrint', noCache: true }
- },
- {
- path: '/stock/selfPreparedMedicineInfo',
- component: () => import('@/xt_pages/stock/selfPreparedMedicine/info'),
- name: 'selfPreparedMedicineInfo',
- meta: { title: 'selfPreparedMedicineInfo', noCache: true }
- }
- ]
- }
|