|
@@ -14,6 +14,7 @@
|
|
|
@view-details="openAcceptedDialog"
|
|
@view-details="openAcceptedDialog"
|
|
|
/>
|
|
/>
|
|
|
<DashboardScrollAreaSchedules />
|
|
<DashboardScrollAreaSchedules />
|
|
|
|
|
+ <DashboardClientProposals />
|
|
|
<DashboardPendingCustomSchedules />
|
|
<DashboardPendingCustomSchedules />
|
|
|
<DashboardNextSchedules v-if="nextSchedules.length > 0" :data="nextSchedules" />
|
|
<DashboardNextSchedules v-if="nextSchedules.length > 0" :data="nextSchedules" />
|
|
|
<DashboardLastDoneSchedules v-if="lastDoneSchedules.length > 0" :data="lastDoneSchedules" />
|
|
<DashboardLastDoneSchedules v-if="lastDoneSchedules.length > 0" :data="lastDoneSchedules" />
|
|
@@ -35,6 +36,7 @@ import DashboardFavoriteProviders from 'src/components/dashboard/DashboardFavori
|
|
|
import DashboardProvidersClose from 'src/components/dashboard/DashboardProvidersClose.vue';
|
|
import DashboardProvidersClose from 'src/components/dashboard/DashboardProvidersClose.vue';
|
|
|
import FinalSuccesModal from '../schedules/components/FinalSuccesModal.vue';
|
|
import FinalSuccesModal from '../schedules/components/FinalSuccesModal.vue';
|
|
|
import DashboardPendingCustomSchedules from 'src/pages/dashboard/components/DashboardPendingCustomSchedules.vue';
|
|
import DashboardPendingCustomSchedules from 'src/pages/dashboard/components/DashboardPendingCustomSchedules.vue';
|
|
|
|
|
+import DashboardClientProposals from 'src/pages/dashboard/components/DashboardClientProposals.vue';
|
|
|
import { useRouter } from 'vue-router'
|
|
import { useRouter } from 'vue-router'
|
|
|
import { onMounted, ref } from 'vue';
|
|
import { onMounted, ref } from 'vue';
|
|
|
import { useQuasar } from 'quasar';
|
|
import { useQuasar } from 'quasar';
|
|
@@ -73,6 +75,7 @@ const reloadDashboard = async () => {
|
|
|
lastDoneSchedules.value = response.lastDoneSchedules ?? [];
|
|
lastDoneSchedules.value = response.lastDoneSchedules ?? [];
|
|
|
favoriteProviders.value = response.favoriteProviders ?? [];
|
|
favoriteProviders.value = response.favoriteProviders ?? [];
|
|
|
providersClose.value = response.providersClose ?? [];
|
|
providersClose.value = response.providersClose ?? [];
|
|
|
|
|
+ DashboardClientProposals.value = response.DashboardClientProposals ?? [];
|
|
|
}
|
|
}
|
|
|
if( showSuccessModal.value ) {
|
|
if( showSuccessModal.value ) {
|
|
|
$q.dialog({
|
|
$q.dialog({
|