This commit is contained in:
nasir@endelospay.com 2024-06-12 03:06:32 +05:00
parent 3a25dffabc
commit 19ee008368
3 changed files with 6 additions and 24 deletions

View File

@ -47,7 +47,7 @@ const headers = [
{ key: 'start_time', title: 'Start Time' }, { key: 'start_time', title: 'Start Time' },
{ key: 'end_time', title: 'End Time' }, { key: 'end_time', title: 'End Time' },
{ key: 'duration', title: 'Duration' }, { key: 'duration', title: 'Duration' },
{ title: 'ACTIONS', key: 'actions' }, // { title: 'ACTIONS', key: 'actions' },
]; ];

View File

@ -113,20 +113,8 @@ onMounted(async () => {
</h5> </h5>
<!-- 👉 Role chip --> <!-- 👉 Role chip -->
<VChip
:color="resolveUserRoleVariant('Patient').color"
size="small"
class="text-capitalize mt-4"
>
Patient
</VChip>
<VChip
size="small"
:color="resolveUserStatusVariant('active')"
class="text-capitalize mt-4"
>
Active
</VChip>
<div class="mt-3"> <div class="mt-3">
<span class="font-weight-medium" style="float: left;"> <span class="font-weight-medium" style="float: left;">
Profile Status: Profile Status:

View File

@ -95,20 +95,14 @@ const resolveUserRoleVariant = role => {
</h5> </h5>
<!-- 👉 Role chip --> <!-- 👉 Role chip -->
<VChip
:color="resolveUserRoleVariant('Provider').color" <!-- <VChip
size="small"
class="text-capitalize mt-4"
>
Provider
</VChip>
<VChip
:color="resolveUserStatusVariant(props.userData.telemed.status==1?'Active':'InActive')" :color="resolveUserStatusVariant(props.userData.telemed.status==1?'Active':'InActive')"
size="small" size="small"
class="text-capitalize mt-4" class="text-capitalize mt-4"
> >
{{ props.userData.telemed.status==1?"Active":'InActive' }} {{ props.userData.telemed.status==1?"Active":'InActive' }}
</VChip> </VChip>-->
</VCardText> </VCardText>