Ticket log
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
William Buezas 2024-06-20 08:40:05 -03:00
parent cc0eb77228
commit 00ebbbfc78
2 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,7 @@
<script setup>
import VnLog from 'src/components/common/VnLog.vue';
</script>
<template>
<VnLog model="Zone" url="/TicketLogs"></VnLog>
</template>

View File

@ -12,7 +12,7 @@ export default {
redirect: { name: 'TicketMain' }, redirect: { name: 'TicketMain' },
menus: { menus: {
main: ['TicketList'], main: ['TicketList'],
card: ['TicketBoxing', 'TicketSms', 'TicketSale'], card: ['TicketBoxing', 'TicketSms', 'TicketSale', 'TicketLog'],
}, },
children: [ children: [
{ {
@ -93,6 +93,15 @@ export default {
}, },
component: () => import('src/pages/Ticket/Card/TicketSms.vue'), component: () => import('src/pages/Ticket/Card/TicketSms.vue'),
}, },
{
path: 'log',
name: 'TicketLog',
meta: {
title: 'log',
icon: 'history',
},
component: () => import('src/pages/Ticket/Card/TicketLog.vue'),
},
], ],
}, },
], ],