diff --git a/resources/js/pages/labs/labs-kit.vue b/resources/js/pages/labs/labs-kit.vue index 30a139f..667baaa 100644 --- a/resources/js/pages/labs/labs-kit.vue +++ b/resources/js/pages/labs/labs-kit.vue @@ -64,10 +64,10 @@ const headers = [ }, - { - title: 'ACTIONS', - key: 'actions', - }, + // { + // title: 'ACTIONS', + // key: 'actions', + // }, ] const resolveStatusVariant = status => { @@ -187,8 +187,8 @@ onMounted(() => { - - + + New Lab Kit diff --git a/resources/js/pages/patients/PatienTabOverview.vue b/resources/js/pages/patients/PatienTabOverview.vue index f5cfe89..4ac304b 100644 --- a/resources/js/pages/patients/PatienTabOverview.vue +++ b/resources/js/pages/patients/PatienTabOverview.vue @@ -42,12 +42,12 @@ const refVForm = ref(null); // Headers const headers = [ // { title: 'Appointment Id', key: 'id' }, - { title: 'Patient', key: 'patient_name' }, - // { key: 'appointment_date', sortable: false, title: 'Date' }, - { key: 'start_time', title: 'Start Time' }, - { key: 'end_time', title: 'End Time' }, - { key: 'duration', title: 'Duration' }, - { title: 'ACTIONS', key: 'actions' }, + { title: 'Provider', key: 'provider_name' }, + { key: 'appointment_date', sortable: false, title: 'Date' }, + //{ key: 'start_time', title: 'Start Time' }, + // { key: 'end_time', title: 'End Time' }, + //{ key: 'duration', title: 'Duration' }, + //{ title: 'ACTIONS', key: 'actions' }, ]; @@ -93,7 +93,7 @@ const getPatientMeetingList = async () => { patientMeetingList.value = list.map(history => ({ ...history, - appointment_date: formatDate(history.appointment_date), + appointment_date: formatDate(history.appointment_date+' '+history.appointment_time), start_time: formatDate(history.start_time), end_time: formatDate(history.end_time), duration: totalCallDuration(history.start_time, history.end_time), diff --git a/resources/js/pages/patients/PatientBioPanel.vue b/resources/js/pages/patients/PatientBioPanel.vue index 74141b1..e63d0fc 100644 --- a/resources/js/pages/patients/PatientBioPanel.vue +++ b/resources/js/pages/patients/PatientBioPanel.vue @@ -62,6 +62,11 @@ const resolveUserRoleVariant = role => { icon: 'ri-user-line', } } + const firstThreeLines = computed(() => { + const lines = props.userData.plans.list_two_title.split(',') + return lines.slice(0, 3) + }) +