From 908fdd43e57f2a069c8ae68a4d153a31bb581d0d Mon Sep 17 00:00:00 2001 From: "nasir@endelospay.com" Date: Sat, 8 Jun 2024 03:54:45 +0500 Subject: [PATCH] fix --- resources/js/constants.js | 2 +- resources/js/pages/medicines/medicines.vue | 10 +- resources/js/pages/patients/NotesPanel.vue | 106 ++++++ .../js/pages/patients/PatienTabOverview.vue | 202 ++++++++++ .../js/pages/patients/PatientBioPanel.vue | 360 ++++++++++++++++++ .../js/pages/patients/PrescriptionPanel.vue | 352 +++++++++++++++++ .../js/pages/patients/UserTabOverview.vue | 286 ++++++++++++++ .../js/pages/patients/patient-profile.vue | 114 ++++++ resources/js/pages/patients/patients.vue | 23 +- .../js/pages/providers/provider-profile.vue | 101 +++++ resources/js/pages/providers/providers.vue | 10 +- .../js/plugins/1.router/additional-routes.js | 5 + resources/js/store.js | 29 +- typed-router.d.ts | 8 + 14 files changed, 1588 insertions(+), 20 deletions(-) create mode 100644 resources/js/pages/patients/NotesPanel.vue create mode 100644 resources/js/pages/patients/PatienTabOverview.vue create mode 100644 resources/js/pages/patients/PatientBioPanel.vue create mode 100644 resources/js/pages/patients/PrescriptionPanel.vue create mode 100644 resources/js/pages/patients/UserTabOverview.vue create mode 100644 resources/js/pages/patients/patient-profile.vue create mode 100644 resources/js/pages/providers/provider-profile.vue diff --git a/resources/js/constants.js b/resources/js/constants.js index 2cf6332..33a3381 100644 --- a/resources/js/constants.js +++ b/resources/js/constants.js @@ -48,4 +48,4 @@ export const ADMIN_LAB_KIT_UPDATE_API = MAIN_DOMAIN + "/api/admin/labkit-update/ export const ADMIN_LAB_KIT_ADD_API = MAIN_DOMAIN + "/api/admin/labkit-list-create" export const ADMIN_LAB_KIT_DELETE_API = MAIN_DOMAIN + "/api/admin/labkit-delete/" - +export const ADMIN_PATIENT_DETAIL_API = MAIN_DOMAIN + "/api/admin/patient-full-detail/" diff --git a/resources/js/pages/medicines/medicines.vue b/resources/js/pages/medicines/medicines.vue index 8c0af87..edaaa08 100644 --- a/resources/js/pages/medicines/medicines.vue +++ b/resources/js/pages/medicines/medicines.vue @@ -91,10 +91,10 @@ const headers = [ key: 'list_sub_title', }, - { - title: 'ACTIONS', - key: 'actions', - }, + // { + // title: 'ACTIONS', + // key: 'actions', + // }, ] const resolveStatusVariant = status => { @@ -377,7 +377,7 @@ onMounted(() => { - + New Medicine diff --git a/resources/js/pages/patients/NotesPanel.vue b/resources/js/pages/patients/NotesPanel.vue new file mode 100644 index 0000000..aa6c301 --- /dev/null +++ b/resources/js/pages/patients/NotesPanel.vue @@ -0,0 +1,106 @@ + + + diff --git a/resources/js/pages/patients/PatienTabOverview.vue b/resources/js/pages/patients/PatienTabOverview.vue new file mode 100644 index 0000000..a7f9871 --- /dev/null +++ b/resources/js/pages/patients/PatienTabOverview.vue @@ -0,0 +1,202 @@ + + + diff --git a/resources/js/pages/patients/PatientBioPanel.vue b/resources/js/pages/patients/PatientBioPanel.vue new file mode 100644 index 0000000..fb3e2b0 --- /dev/null +++ b/resources/js/pages/patients/PatientBioPanel.vue @@ -0,0 +1,360 @@ + + + + + diff --git a/resources/js/pages/patients/PrescriptionPanel.vue b/resources/js/pages/patients/PrescriptionPanel.vue new file mode 100644 index 0000000..511ca52 --- /dev/null +++ b/resources/js/pages/patients/PrescriptionPanel.vue @@ -0,0 +1,352 @@ + + + + diff --git a/resources/js/pages/patients/UserTabOverview.vue b/resources/js/pages/patients/UserTabOverview.vue new file mode 100644 index 0000000..5382a9f --- /dev/null +++ b/resources/js/pages/patients/UserTabOverview.vue @@ -0,0 +1,286 @@ + + +