123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/stock/drugs',
- component: Layout,
- redirect: 'noredirect',
- name: 'stockDrugs',
- alwaysShow: true,
- meta: {
- title: 'stockDrugs',
- icon: 'stock',
- isChild: true
- },
- children: [
- {
- path: '/stock/drugs/stock/query',
- component: () => import('@/xt_pages/stock/drugs/query'),
- name: 'drugsQuery',
- meta: { title: 'drugsQuery', noCache: true }
- },
- {
- path: '/stock/drugs/stock/in',
- component: () => import('@/xt_pages/stock/drugs/drugStockInOrder'),
- name: 'drugsStockIn',
- meta: { title: 'drugsStockIn', noCache: true }
- },
- {
- path: '/stock/drugs/stock/out',
- component: () => import('@/xt_pages/stock/drugs/drugStockOutOrder'),
- name: 'drugsStockOut',
- meta: { title: 'drugsStockOut', noCache: true }
- },
- {
- path: '/stock/drugs/stock/return',
- component: () => import('@/xt_pages/stock/drugs/drugSalesReturnOrder'),
- name: 'drugsStockReturn',
- meta: { title: 'drugsStockReturn', noCache: true }
- },
- {
- path: '/stock/drugs/stock/cancel',
- component: () => import('@/xt_pages/stock/drugs/cancelDrugStockOrder'),
- name: 'drugsStockCancel',
- meta: { title: 'drugsStockCancel', noCache: true }
- },
- {
- path:'/stock/drugs/stock/detail',
- component:()=>import('@/xt_pages/stock/drugs/drugIndex'),
- name:'drugDetail',
- meta:{title:'明细查询',noCache:true}
- },
- // {
- // path: '/stock/drugs/stock/adjustPrice',
- // component: () => import('@/xt_pages/stock/drugs/adjustPrice'),
- // name: 'drugsAdjustPrice',
- // meta: { title: 'drugsAdjustPrice', noCache: true }
- // },
- // {
- // path: '/stock/drugs/stock/reportLoss',
- // component: () => import('@/xt_pages/stock/drugs/reportLoss'),
- // name: 'drugsReportLoss',
- // meta: { title: 'drugsReportLoss', noCache: true }
- // },
- // {
- // path: '/stock/drugs/stock/drugsSurplus',
- // component: () => import('@/xt_pages/stock/drugs/drugsSurplus'),
- // name: 'drugsSurplus',
- // meta: { title: 'drugsSurplus', noCache: true }
- // },
- // {
- // path: '/stock/drugs/stock/drugsExpiryDate',
- // component: () => import('@/xt_pages/stock/drugs/drugsExpiryDate'),
- // name: 'drugsExpiryDate',
- // meta: { title: 'drugsExpiryDate', noCache: true }
- // },
- {
- path: '/drugstock/in/add',
- component: () => import('@/xt_pages/stock/drugs/drugStockInOrderAdd'),
- name: 'drugStockInOrderAdd',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugStockInOrderAdd', noCache: true }
- },{
- path: '/drugstock/in/detail',
- component: () => import('@/xt_pages/stock/drugs/drugStockInDetail'),
- name: 'drugStockInDetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugStockInDetail', noCache: true }
- }, {
- path: '/drugstock/return/detail',
- component: () => import('@/xt_pages/stock/drugs/drugSalesReturnDetail'),
- name: 'drugSalesReturnDetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugSalesReturnDetail', noCache: true }
- }, {
- path: '/drugstock/return/add',
- component: () => import('@/xt_pages/stock/drugs/drugSalesReturnOrderAdd'),
- name: 'drugSalesReturnOrderAdd',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugSalesReturnOrderAdd', noCache: true }
- }, {
- path: '/drugstock/out/add',
- component: () => import('@/xt_pages/stock/drugs/drugStockOutOrderAdd'),
- name: 'drugStockOutOrderAdd',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugStockOutOrderAdd', noCache: true }
- }, {
- path: '/drugstock/out/detail',
- component: () => import('@/xt_pages/stock/drugs/drugStockOutDetail'),
- name: 'drugStockOutDetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugStockOutDetail', noCache: true }
- }, {
- path: '/drugstock/cancel/add',
- component: () => import('@/xt_pages/stock/drugs/cancelDrugStockOrderAdd'),
- name: 'cancelDrugStockOrderAdd',
- hidden: true,
- is_menu: false,
- meta: { title: 'cancelDrugStockOrderAdd', noCache: true }
- },{
- path: '/drugstock/cancel/detail',
- component: () => import('@/xt_pages/stock/drugs/cancelDrugStockDetail'),
- name: 'cancelDrugStockDetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'cancelDrugStockDetail', noCache: true }
- },{
- path: '/drugstock/user/detail',
- component: () => import('@/xt_pages/stock/drugs/drugStockUserDetail'),
- name: 'drugStockUserDetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'drugStockUserDetail', noCache: true }
- },
- ]
- }
|