cursor updates
This commit is contained in:
parent
6a2bc71ea0
commit
cb0ef2b627
1 changed files with 4 additions and 2 deletions
|
|
@ -18,6 +18,7 @@
|
||||||
<div class="header-cell header-start">
|
<div class="header-cell header-start">
|
||||||
<button
|
<button
|
||||||
v-if="activePageIndex !== 0"
|
v-if="activePageIndex !== 0"
|
||||||
|
type="button"
|
||||||
class="span-block-flex"
|
class="span-block-flex"
|
||||||
@click="gotoPreviousPage()">
|
@click="gotoPreviousPage()">
|
||||||
<img
|
<img
|
||||||
|
|
@ -32,6 +33,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="header-cell header-end">
|
<div class="header-cell header-end">
|
||||||
<button
|
<button
|
||||||
|
type="button"
|
||||||
class="span-block-flex"
|
class="span-block-flex"
|
||||||
@click="gotoNextPage()">
|
@click="gotoNextPage()">
|
||||||
More
|
More
|
||||||
|
|
@ -297,7 +299,7 @@ export default {
|
||||||
},
|
},
|
||||||
unmounted() {
|
unmounted() {
|
||||||
if (this.mql) {
|
if (this.mql) {
|
||||||
this.mql.removeEventListener('change', () => {});
|
this.mql.removeEventListener('change', this.handleMqlChange);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
@ -472,7 +474,7 @@ export default {
|
||||||
}
|
}
|
||||||
this.activePageIndex += 1;
|
this.activePageIndex += 1;
|
||||||
this.selectedDate = null;
|
this.selectedDate = null;
|
||||||
this.selectedTIme = null;
|
this.selectedTime = null;
|
||||||
this.selectedTimeSlot = null;
|
this.selectedTimeSlot = null;
|
||||||
this.findFirstAvailableDateInView();
|
this.findFirstAvailableDateInView();
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue