|
@ -1,194 +1,202 @@
|
|
|
import NavLayout from "@/components/layout/NavLayout"
|
|
|
import NavLayout from '@/components/layout/NavLayout'
|
|
|
const routeMap = [
|
|
|
{
|
|
|
path: "/replenishment",
|
|
|
name: "replenishment",
|
|
|
component: NavLayout,
|
|
|
children: [
|
|
|
{
|
|
|
path: "/replenishment/index",
|
|
|
name: "replenishmentIndex",
|
|
|
meta: {
|
|
|
title: "",
|
|
|
hasTop: false,
|
|
|
hasBot: true
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/index.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/device/list",
|
|
|
name: "replenishmentDeviceList",
|
|
|
meta: {
|
|
|
title: "设备药品概况",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/device/list.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/device/detail",
|
|
|
name: "replenishmentDeviceDetail",
|
|
|
meta: {
|
|
|
title: "设备药品概况",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/device/detail.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/record/list",
|
|
|
name: "replenishmentRecordList",
|
|
|
meta: {
|
|
|
title: "入库记录",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/record/list.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/record/detail",
|
|
|
name: "replenishmentRecordDetail",
|
|
|
meta: {
|
|
|
title: "入库记录详情",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/record/detail.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/picking/list",
|
|
|
name: "replenishmentPickingList",
|
|
|
meta: {
|
|
|
title: "药品申领详情",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/picking/list.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/picking/outList",
|
|
|
name: "replenishmentOutList",
|
|
|
meta: {
|
|
|
title: "出库单列表",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/picking/outList.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/picking/detail",
|
|
|
name: "replenishmentPickingDetail",
|
|
|
meta: {
|
|
|
title: "药品申领详情",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/picking/detail.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/stockUp/deviceList",
|
|
|
name: "replenishmentStockUpDeviceList",
|
|
|
meta: {
|
|
|
title: "查看缺药设备",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/stockUp/deviceList.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/stockUp/detail",
|
|
|
name: "replenishmentStockUpDetail",
|
|
|
meta: {
|
|
|
title: "查看缺药汇总",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/stockUp/detail.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/stockUp/createOut",
|
|
|
name: "replenishmentStockUpCreateOut",
|
|
|
meta: {
|
|
|
title: "生成出药单",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/stockUp/createOut.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/stockUp/drugList",
|
|
|
name: "ReplenishmentDrugSel",
|
|
|
meta: {
|
|
|
title: "选择药品",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/stockUp/drugList.vue")
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment',
|
|
|
name: 'replenishment',
|
|
|
component: NavLayout,
|
|
|
children: [
|
|
|
{
|
|
|
path: '/replenishment/index',
|
|
|
name: 'replenishmentIndex',
|
|
|
meta: {
|
|
|
title: '',
|
|
|
hasTop: false,
|
|
|
hasBot: true
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/index.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/device/list',
|
|
|
name: 'replenishmentDeviceList',
|
|
|
meta: {
|
|
|
title: '设备药品概况',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/device/list.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/device/detail',
|
|
|
name: 'replenishmentDeviceDetail',
|
|
|
meta: {
|
|
|
title: '设备药品概况',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/device/detail.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/record/list',
|
|
|
name: 'replenishmentRecordList',
|
|
|
meta: {
|
|
|
title: '入库记录',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/record/list.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/record/detail',
|
|
|
name: 'replenishmentRecordDetail',
|
|
|
meta: {
|
|
|
title: '入库记录详情',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/record/detail.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/picking/list',
|
|
|
name: 'replenishmentPickingList',
|
|
|
meta: {
|
|
|
title: '药品申领详情',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/picking/list.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/picking/outList',
|
|
|
name: 'replenishmentOutList',
|
|
|
meta: {
|
|
|
title: '出库单列表',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/picking/outList.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/picking/detail',
|
|
|
name: 'replenishmentPickingDetail',
|
|
|
meta: {
|
|
|
title: '药品申领详情',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/picking/detail.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/stockUp/deviceList',
|
|
|
name: 'replenishmentStockUpDeviceList',
|
|
|
meta: {
|
|
|
title: '查看缺药设备',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/stockUp/deviceList.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/stockUp/detail',
|
|
|
name: 'replenishmentStockUpDetail',
|
|
|
meta: {
|
|
|
title: '查看缺药汇总',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/stockUp/detail.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/stockUp/createOut',
|
|
|
name: 'replenishmentStockUpCreateOut',
|
|
|
meta: {
|
|
|
title: '生成出药单',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/stockUp/createOut.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/stockUp/drugList',
|
|
|
name: 'ReplenishmentDrugSel',
|
|
|
meta: {
|
|
|
title: '选择药品',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/stockUp/drugList.vue')
|
|
|
},
|
|
|
|
|
|
|
|
|
{
|
|
|
path: '/replenishment/start/deviceList',
|
|
|
name: 'replenishmentStartDeviceList',
|
|
|
meta: {
|
|
|
title: '选择设备',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/deviceList.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/deviceDetail',
|
|
|
name: 'replenishmentStartDeviceDetail',
|
|
|
meta: {
|
|
|
title: '药品入库',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/deviceDetail.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/quick',
|
|
|
name: 'replenishmentStartQuick',
|
|
|
meta: {
|
|
|
title: '药品详情',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/quick.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/productDetail',
|
|
|
name: 'replenishmentStartProductDetail',
|
|
|
meta: {
|
|
|
title: '药品详情',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/productDetail.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/selProduct',
|
|
|
name: 'replenishmentStartSelProduct',
|
|
|
meta: {
|
|
|
title: '选择药品',
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/selProduct.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/traceability',
|
|
|
name: 'replenishmentStartTraceability',
|
|
|
meta: {
|
|
|
title: '药品追溯码',
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/traceability.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/scan',
|
|
|
name: 'scan',
|
|
|
meta: {
|
|
|
title: '扫码',
|
|
|
hasBot: false,
|
|
|
hasTop: false
|
|
|
},
|
|
|
component: () => import('@/views/replenishment/start/components/scan.vue')
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
|
|
|
{
|
|
|
path: "/replenishment/start/deviceList",
|
|
|
name: "replenishmentStartDeviceList",
|
|
|
meta: {
|
|
|
title: "选择设备",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/start/deviceList.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/start/deviceDetail",
|
|
|
name: "replenishmentStartDeviceDetail",
|
|
|
meta: {
|
|
|
title: "药品入库",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/start/deviceDetail.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/start/quick",
|
|
|
name: "replenishmentStartQuick",
|
|
|
meta: {
|
|
|
title: "药品详情",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/start/quick.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/start/productDetail",
|
|
|
name: "replenishmentStartProductDetail",
|
|
|
meta: {
|
|
|
title: "药品详情",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/start/productDetail.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/replenishment/start/selProduct",
|
|
|
name: "replenishmentStartSelProduct",
|
|
|
meta: {
|
|
|
title: "选择药品",
|
|
|
// hasTop: false,
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/start/selProduct.vue")
|
|
|
},
|
|
|
{
|
|
|
path: '/replenishment/start/traceability',
|
|
|
name: 'replenishmentStartTraceability',
|
|
|
meta: {
|
|
|
title: '药品追溯码',
|
|
|
hasBot: false
|
|
|
},
|
|
|
component: () => import("@/views/replenishment/start/traceability.vue")
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
];
|
|
|
|
|
|
export default routeMap;
|
|
|
export default routeMap
|