feat: add pay cashier route
This commit is contained in:
16
apps/web-antd/src/router/routes/modules/pay.ts
Normal file
16
apps/web-antd/src/router/routes/modules/pay.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { RouteRecordRaw } from 'vue-router';
|
||||
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
path: '/pay/cashier',
|
||||
component: () => import('#/views/pay/cashier/index.vue'),
|
||||
name: 'PayCashier',
|
||||
meta: {
|
||||
title: '收银台',
|
||||
icon: 'lucide:badge-japanese-yen',
|
||||
hideInMenu: true,
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export default routes;
|
||||
7
apps/web-antd/src/views/pay/cashier/index.vue
Normal file
7
apps/web-antd/src/views/pay/cashier/index.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<h1>收银台</h1>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user