add dialog list menu hak akses

This commit is contained in:
2025-06-03 12:20:49 +07:00
parent 40fb44a33f
commit 30fc55d50f
7 changed files with 189 additions and 105 deletions
+14 -12
View File
@@ -19,17 +19,19 @@ const dialog = ref(false);
<!-- ini list -->
<template>
<v-row no-gutters>
<div class="d-flex justify-space-between">
<template v-if="typeUser && typeUser.length > 0">
<v-col v-for="(item, index) in typeUser" :key="index">
<MasterCardList :item="item" @detail="detailType" />
</v-col>
</template>
<template v-else>
<div class="d-flex justify-content-center align-items-center">
<p>Tidak ada Pasien</p>
</div>
</template>
</div>
<v-col cols="12" md="4">
<div class="d-flex justify-space-between">
<template v-if="typeUser && typeUser.length > 0">
<v-col v-for="(item, index) in typeUser" :key="index">
<MasterCardList :item="item" @detail="detailType" />
</v-col>
</template>
<template v-else>
<div class="d-flex justify-content-center align-items-center">
<p>Tidak ada Pasien</p>
</div>
</template>
</div>
</v-col>
</v-row>
</template>