feat: 支付功能迁移(初稿)

This commit is contained in:
dhb52
2023-08-06 23:25:07 +08:00
parent 64b40e7fdf
commit a6eab3cc9a
14 changed files with 1155 additions and 58 deletions

View File

@ -410,6 +410,24 @@ const remainingRouter: AppRouteRecordRaw[] = [
}
}
]
},
{
path: '/pay',
component: Layout,
name: 'pay',
meta: { hidden: true },
children: [
{
path: 'cashier',
name: 'PayCashier',
meta: {
title: '收银台',
noCache: true,
hidden: true
},
component: () => import('@/views/pay/cashier/index.vue')
}
]
}
]