feat(installation): implement installation list with pagination and search

refactor(installation): move form schema and configuration to separate files
fix(installation): update page title and content display
This commit is contained in:
Khafid Prayoga
2025-09-03 17:00:49 +07:00
parent 646c7b6d73
commit 4c0312e487
8 changed files with 537 additions and 163 deletions
@@ -6,7 +6,7 @@ import Error from '~/components/pub/base/error/error.vue'
definePageMeta({
// middleware: ['rbac'],
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
title: 'List Division',
title: 'List Installation',
contentFrame: 'cf-full-width',
})
@@ -34,7 +34,7 @@ const canRead = true
<template>
<div>
<div v-if="canRead">
route installation list
<FlowInstallationList />
</div>
<Error v-else :status-code="403" />
</div>