|
@@ -179,7 +179,7 @@
|
|
</ul>
|
|
</ul>
|
|
|
|
|
|
<div class="border-left border-right border-bottom p-3">
|
|
<div class="border-left border-right border-bottom p-3">
|
|
- <div v-show="tab==='appointments'">
|
|
|
|
|
|
+ <div v-show="tab==='appointments'" class="appointments-tab">
|
|
<div class="d-flex align-items-end mb-3">
|
|
<div class="d-flex align-items-end mb-3">
|
|
<b class="large"><span class="text-secondary">Today:</span> @{{ selectedDate }}</b>
|
|
<b class="large"><span class="text-secondary">Today:</span> @{{ selectedDate }}</b>
|
|
<div class="ml-auto d-inline-flex align-items-center">
|
|
<div class="ml-auto d-inline-flex align-items-center">
|
|
@@ -207,7 +207,7 @@
|
|
<span class="d-inline-block ml- 2 text-secondary font-weight-bold">@{{ event.title }}</span>
|
|
<span class="d-inline-block ml- 2 text-secondary font-weight-bold">@{{ event.title }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="pb-1">
|
|
<div class="pb-1">
|
|
- <a target="_blank" :href="'/patients/view/' + event.clientUid" class="font-weight-bold">@{{ event.clientName }}</a>
|
|
|
|
|
|
+ <a :href="'/patients/view/' + event.clientUid" class="font-weight-bold">@{{ event.clientName }}</a>
|
|
<span class="small d-inline-block pl-2 text-secondary font-weight-normal">@{{ event.clientSummary }}</span>
|
|
<span class="small d-inline-block pl-2 text-secondary font-weight-normal">@{{ event.clientSummary }}</span>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
@@ -236,9 +236,9 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="numEventsForDate === 0" class="bg-light p-3 text-secondary border bounded">
|
|
<div v-if="numEventsForDate === 0" class="bg-light p-3 text-secondary border bounded">
|
|
- <span v-if="filterStatus === ''">You have no appointments on <b>@{{ selectedDate }}</b></span>
|
|
|
|
- <span v-if="filterStatus !== ''">You have no appointments on <b>@{{ selectedDate }}</b> with status <b>@{{ filterStatus }}</b></span>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <span v-if="filterStatus === ''">You have no appointments on <b>@{{ selectedDate }}</b></span>
|
|
|
|
+ <span v-if="filterStatus !== ''">You have no appointments on <b>@{{ selectedDate }}</b> with status <b>@{{ filterStatus }}</b></span>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
<div v-show="tab==='measurements'">
|
|
<div v-show="tab==='measurements'">
|
|
@include('app.dashboard.measurements')
|
|
@include('app.dashboard.measurements')
|
|
@@ -311,6 +311,9 @@
|
|
// self.updateNumEventsForDate();
|
|
// self.updateNumEventsForDate();
|
|
self.appointmentsLoaded = true;
|
|
self.appointmentsLoaded = true;
|
|
hideMask();
|
|
hideMask();
|
|
|
|
+ Vue.nextTick(() => {
|
|
|
|
+ initFastLoad($('.appointments-tab'));
|
|
|
|
+ });
|
|
});
|
|
});
|
|
},
|
|
},
|
|
selectToday: function () {
|
|
selectToday: function () {
|
|
@@ -500,7 +503,7 @@
|
|
initMoes();
|
|
initMoes();
|
|
|
|
|
|
// init fast load
|
|
// init fast load
|
|
- initFastLoad($('#pro-dashboard-container'));
|
|
|
|
|
|
+ // initFastLoad($('#pro-dashboard-container'));
|
|
|
|
|
|
}
|
|
}
|
|
});
|
|
});
|