Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

drugs.js 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/stock/drugs',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'stockDrugs',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'stockDrugs',
  10. icon: 'stock',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/stock/drugs/stock/query',
  16. component: () => import('@/xt_pages/stock/drugs/query'),
  17. name: 'drugsQuery',
  18. meta: { title: 'drugsQuery', noCache: true }
  19. },
  20. {
  21. path: '/stock/drugs/stock/in',
  22. component: () => import('@/xt_pages/stock/drugs/drugStockInOrder'),
  23. name: 'drugsStockIn',
  24. meta: { title: 'drugsStockIn', noCache: true }
  25. },
  26. {
  27. path: '/stock/drugs/stock/out',
  28. component: () => import('@/xt_pages/stock/drugs/drugStockOutOrder'),
  29. name: 'drugsStockOut',
  30. meta: { title: 'drugsStockOut', noCache: true }
  31. },
  32. {
  33. path: '/stock/drugs/stock/return',
  34. component: () => import('@/xt_pages/stock/drugs/drugSalesReturnOrder'),
  35. name: 'drugsStockReturn',
  36. meta: { title: 'drugsStockReturn', noCache: true }
  37. },
  38. {
  39. path: '/stock/drugs/stock/cancel',
  40. component: () => import('@/xt_pages/stock/drugs/cancelDrugStockOrder'),
  41. name: 'drugsStockCancel',
  42. meta: { title: 'drugsStockCancel', noCache: true }
  43. },
  44. {
  45. path:'/stock/drugs/stock/detail',
  46. component:()=>import('@/xt_pages/stock/drugs/drugIndex'),
  47. name:'drugDetail',
  48. meta:{title:'明细查询',noCache:true}
  49. },
  50. // {
  51. // path: '/stock/drugs/stock/adjustPrice',
  52. // component: () => import('@/xt_pages/stock/drugs/adjustPrice'),
  53. // name: 'drugsAdjustPrice',
  54. // meta: { title: 'drugsAdjustPrice', noCache: true }
  55. // },
  56. // {
  57. // path: '/stock/drugs/stock/reportLoss',
  58. // component: () => import('@/xt_pages/stock/drugs/reportLoss'),
  59. // name: 'drugsReportLoss',
  60. // meta: { title: 'drugsReportLoss', noCache: true }
  61. // },
  62. // {
  63. // path: '/stock/drugs/stock/drugsSurplus',
  64. // component: () => import('@/xt_pages/stock/drugs/drugsSurplus'),
  65. // name: 'drugsSurplus',
  66. // meta: { title: 'drugsSurplus', noCache: true }
  67. // },
  68. // {
  69. // path: '/stock/drugs/stock/drugsExpiryDate',
  70. // component: () => import('@/xt_pages/stock/drugs/drugsExpiryDate'),
  71. // name: 'drugsExpiryDate',
  72. // meta: { title: 'drugsExpiryDate', noCache: true }
  73. // },
  74. {
  75. path: '/drugstock/in/add',
  76. component: () => import('@/xt_pages/stock/drugs/drugStockInOrderAdd'),
  77. name: 'drugStockInOrderAdd',
  78. hidden: true,
  79. is_menu: false,
  80. meta: { title: 'drugStockInOrderAdd', noCache: true }
  81. },{
  82. path: '/drugstock/in/detail',
  83. component: () => import('@/xt_pages/stock/drugs/drugStockInDetail'),
  84. name: 'drugStockInDetail',
  85. hidden: true,
  86. is_menu: false,
  87. meta: { title: 'drugStockInDetail', noCache: true }
  88. }, {
  89. path: '/drugstock/return/detail',
  90. component: () => import('@/xt_pages/stock/drugs/drugSalesReturnDetail'),
  91. name: 'drugSalesReturnDetail',
  92. hidden: true,
  93. is_menu: false,
  94. meta: { title: 'drugSalesReturnDetail', noCache: true }
  95. }, {
  96. path: '/drugstock/return/add',
  97. component: () => import('@/xt_pages/stock/drugs/drugSalesReturnOrderAdd'),
  98. name: 'drugSalesReturnOrderAdd',
  99. hidden: true,
  100. is_menu: false,
  101. meta: { title: 'drugSalesReturnOrderAdd', noCache: true }
  102. }, {
  103. path: '/drugstock/out/add',
  104. component: () => import('@/xt_pages/stock/drugs/drugStockOutOrderAdd'),
  105. name: 'drugStockOutOrderAdd',
  106. hidden: true,
  107. is_menu: false,
  108. meta: { title: 'drugStockOutOrderAdd', noCache: true }
  109. }, {
  110. path: '/drugstock/out/detail',
  111. component: () => import('@/xt_pages/stock/drugs/drugStockOutDetail'),
  112. name: 'drugStockOutDetail',
  113. hidden: true,
  114. is_menu: false,
  115. meta: { title: 'drugStockOutDetail', noCache: true }
  116. }, {
  117. path: '/drugstock/cancel/add',
  118. component: () => import('@/xt_pages/stock/drugs/cancelDrugStockOrderAdd'),
  119. name: 'cancelDrugStockOrderAdd',
  120. hidden: true,
  121. is_menu: false,
  122. meta: { title: 'cancelDrugStockOrderAdd', noCache: true }
  123. },{
  124. path: '/drugstock/cancel/detail',
  125. component: () => import('@/xt_pages/stock/drugs/cancelDrugStockDetail'),
  126. name: 'cancelDrugStockDetail',
  127. hidden: true,
  128. is_menu: false,
  129. meta: { title: 'cancelDrugStockDetail', noCache: true }
  130. },{
  131. path: '/drugstock/user/detail',
  132. component: () => import('@/xt_pages/stock/drugs/drugStockUserDetail'),
  133. name: 'drugStockUserDetail',
  134. hidden: true,
  135. is_menu: false,
  136. meta: { title: 'drugStockUserDetail', noCache: true }
  137. },
  138. ]
  139. }