|
|
@@ -16,7 +16,7 @@
|
|
|
/>
|
|
|
<DashboardTodaySchedules v-if="todaySchedules.length > 0" :data="todaySchedules" @rate="openRatingDialog" />
|
|
|
<DashboardScrollAreaSchedules />
|
|
|
- <DashboardClientProposals :data="clientProposals" />
|
|
|
+ <DashboardClientProposals :data="clientProposals" @refresh-data="reloadDashboard" />
|
|
|
<DashboardPendingCustomSchedules />
|
|
|
<DashboardNextSchedules v-if="nextSchedules.length > 0" :data="nextSchedules" @view-details="openNextScheduleDialog" />
|
|
|
<DashboardLastDoneSchedules v-if="lastDoneSchedules.length > 0" :data="lastDoneSchedules" />
|
|
|
@@ -61,7 +61,7 @@ const todaySchedules = ref([]);
|
|
|
const $q = useQuasar();
|
|
|
const loading = ref(true);
|
|
|
|
|
|
-const showSuccessModal = ref(router.currentRoute.value.fullPath.includes('showSuccessModal') || false);
|
|
|
+const showSuccessModal = ref(router.currentRoute.value.fullPath.includes('showSuccessModal') || 'true');
|
|
|
const { onDialogOK } = useDialogPluginComponent();
|
|
|
|
|
|
const openAcceptedDialog = (schedule) => {
|