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

drugs.js 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. {
  83. path: '/drugstock/in/detail',
  84. component: () => import('@/xt_pages/stock/drugs/drugStockInDetail'),
  85. name: 'drugStockInDetail',
  86. hidden: true,
  87. is_menu: false,
  88. meta: { title: 'drugStockInDetail', noCache: true }
  89. }, {
  90. path: '/drugstock/return/detail',
  91. component: () => import('@/xt_pages/stock/drugs/drugSalesReturnDetail'),
  92. name: 'drugSalesReturnDetail',
  93. hidden: true,
  94. is_menu: false,
  95. meta: { title: 'drugSalesReturnDetail', noCache: true }
  96. }, {
  97. path: '/drugstock/return/add',
  98. component: () => import('@/xt_pages/stock/drugs/drugSalesReturnOrderAdd'),
  99. name: 'drugSalesReturnOrderAdd',
  100. hidden: true,
  101. is_menu: false,
  102. meta: { title: 'drugSalesReturnOrderAdd', noCache: true }
  103. }, {
  104. path: '/drugstock/out/add',
  105. component: () => import('@/xt_pages/stock/drugs/drugStockOutOrderAdd'),
  106. name: 'drugStockOutOrderAdd',
  107. hidden: true,
  108. is_menu: false,
  109. meta: { title: 'drugStockOutOrderAdd', noCache: true }
  110. }, {
  111. path: '/drugstock/out/detail',
  112. component: () => import('@/xt_pages/stock/drugs/drugStockOutDetail'),
  113. name: 'drugStockOutDetail',
  114. hidden: true,
  115. is_menu: false,
  116. meta: { title: 'drugStockOutDetail', noCache: true }
  117. }, {
  118. path: '/drugstock/cancel/add',
  119. component: () => import('@/xt_pages/stock/drugs/cancelDrugStockOrderAdd'),
  120. name: 'cancelDrugStockOrderAdd',
  121. hidden: true,
  122. is_menu: false,
  123. meta: { title: 'cancelDrugStockOrderAdd', noCache: true }
  124. }, {
  125. path: '/drugstock/cancel/detail',
  126. component: () => import('@/xt_pages/stock/drugs/cancelDrugStockDetail'),
  127. name: 'cancelDrugStockDetail',
  128. hidden: true,
  129. is_menu: false,
  130. meta: { title: 'cancelDrugStockDetail', noCache: true }
  131. },
  132. {
  133. path: '/drugstock/cancel/edit',
  134. component: () => import('@/xt_pages/stock/drugs/cancelDrugStockOrderEdit'),
  135. name: 'cancelDrugStockOrderEdit',
  136. hidden: true,
  137. is_menu: false,
  138. meta: { title: 'cancelDrugStockOrderEdit', noCache: true }
  139. },
  140. {
  141. path: '/drugstock/user/detail',
  142. component: () => import('@/xt_pages/stock/drugs/drugStockUserDetail'),
  143. name: 'drugStockUserDetail',
  144. hidden: true,
  145. is_menu: false,
  146. meta: { title: 'drugStockUserDetail', noCache: true }
  147. },
  148. // 编辑药品入库单
  149. {
  150. path: '/drugstock/in/order/edit',
  151. component: () => import('@/xt_pages/stock/drugs/drugStockInOrderEdit'),
  152. name: 'drugStockInOrderEdit',
  153. hidden: true,
  154. is_menu: false,
  155. meta: { title: 'drugStockInOrderEdit', noCache: true }
  156. },
  157. {
  158. path: '/drugstock/in/drugstockflow',
  159. component: () => import('@/xt_pages/stock/drugs/drugStockFlow'),
  160. name: 'drugStockFlow',
  161. hidden: true,
  162. is_menu: false,
  163. meta: { title: 'drugStockFlow', noCache: true }
  164. },
  165. {
  166. path: '/drugstock/in/drugbatchnumber',
  167. component: () => import('@/xt_pages/stock/drugs/drugBatchNumber'),
  168. name: 'drugBatchNumber',
  169. hidden: true,
  170. is_menu: false,
  171. meta: { title: 'drugBatchNumber', noCache: true }
  172. },
  173. {
  174. path: '/stock/stockoutorderedit',
  175. component: () => import('@/xt_pages/stock/stockOutOrderEdit'),
  176. name: 'stockOutOrderEdit',
  177. hidden: true,
  178. is_menu: false,
  179. meta: { title: 'stockOutOrderEdit', noCache: true }
  180. },
  181. {
  182. path: '/stock/in/order/edit',
  183. component: () => import('@/xt_pages/stock/stockInOrderEdit'),
  184. name: 'stockInOrderEdit',
  185. hidden: true,
  186. is_menu: false,
  187. meta: { title: 'stockInOrderEdit' }
  188. },
  189. {
  190. path: '/stock/in/stockflow',
  191. component: () => import('@/xt_pages/stock/stockFlow'),
  192. name: 'stockFlow',
  193. hidden: true,
  194. is_menu: false,
  195. meta: { title: 'stockFlow' }
  196. },
  197. {
  198. path: '/stock/in/stockbatchnumber',
  199. component: () => import('@/xt_pages/stock/stockBatchNumber'),
  200. name: 'stockBatchNumber',
  201. hidden: true,
  202. is_menu: false,
  203. meta: { title: 'stockBatchNumber' }
  204. },
  205. {
  206. path: '/drug/out/drugstockoutorderedit',
  207. component: () => import('@/xt_pages/stock/drugs/drugStockOutOrderEdit'),
  208. name: 'drugStockOutOrderEdit',
  209. hidden: true,
  210. is_menu: false,
  211. meta: { title: 'drugStockOutOrderEdit' }
  212. },
  213. {
  214. path: '/drug/cancel/print',
  215. component: () => import('@/xt_pages/stock/drugs/cancelDrugOrderPrint'),
  216. name: 'cancelDrugOrderPrint',
  217. hidden: true,
  218. is_menu: false,
  219. meta: { title: 'cancelDrugOrderPrint' }
  220. }
  221. ]
  222. }