update slicing entry and verifikasi

This commit is contained in:
Hanan Askarim
2024-08-20 14:28:06 +07:00
parent 8d38f89f5d
commit c65da6ade9
8 changed files with 226 additions and 137 deletions

View File

@@ -15,6 +15,16 @@
</v-toolbar>
</template>
<template v-slot:headers="{ columns }">
<tr>
<template v-for="column in columns" :key="column.key">
<td :class="column.class" :style="{ width: column.width, textAlign: column.align }">
<span>{{ column.title }}</span>
</td>
</template>
</tr>
</template>
<template v-slot:item="{ item }">
<tr v-bind:class="{'bg-primary-lighten':isSelected(item)}" @click="selectMe(item)">
<td>
@@ -54,7 +64,7 @@
key: 'name',
sortable: false,
width: "50%",
title: this.$t('message.table.noreg'),
title: this.$t('message.tableListPatient.noreg'),
class: "font-weight-bold",
},
{
@@ -62,7 +72,7 @@
key: 'name',
sortable: false,
width: "50%",
title: this.$t('message.table.name'),
title: this.$t('message.tableListPatient.name'),
class: "font-weight-bold",
},
],