CASH-1221
formatting
This commit is contained in:
parent
fd9265a269
commit
8636751b7d
3 changed files with 5 additions and 13 deletions
|
|
@ -307,11 +307,7 @@ export default {
|
||||||
},
|
},
|
||||||
set(newSelectedDate) {
|
set(newSelectedDate) {
|
||||||
this.$emit("update:modelValue", newSelectedDate);
|
this.$emit("update:modelValue", newSelectedDate);
|
||||||
this.dispatchStoreAction(
|
this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
|
||||||
this.storeActions.SAVE_WAITLIST_REQUESTED,
|
|
||||||
false,
|
|
||||||
false
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
dropOffDurationText() {
|
dropOffDurationText() {
|
||||||
|
|
|
||||||
|
|
@ -992,12 +992,8 @@ export default {
|
||||||
|
|
||||||
this.isVehicleProtected = null;
|
this.isVehicleProtected = null;
|
||||||
},
|
},
|
||||||
resetWaitlist(){
|
resetWaitlist() {
|
||||||
this.dispatchStoreAction(
|
this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
|
||||||
this.storeActions.SAVE_WAITLIST_REQUESTED,
|
|
||||||
false,
|
|
||||||
false
|
|
||||||
);
|
|
||||||
this.waitListRequested = false;
|
this.waitListRequested = false;
|
||||||
},
|
},
|
||||||
setServiceabilityDetails(serviceabilityDetails) {
|
setServiceabilityDetails(serviceabilityDetails) {
|
||||||
|
|
|
||||||
|
|
@ -346,11 +346,11 @@ export default {
|
||||||
return this.getCmsContent("WaitListSuccessWidget", "BodyText");
|
return this.getCmsContent("WaitListSuccessWidget", "BodyText");
|
||||||
},
|
},
|
||||||
waitListRequested: {
|
waitListRequested: {
|
||||||
get(){
|
get() {
|
||||||
return this.$store.getters.order.customer?.waitListRequested;
|
return this.$store.getters.order.customer?.waitListRequested;
|
||||||
},
|
},
|
||||||
set(value) {
|
set(value) {
|
||||||
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value)
|
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
isMobileAppointment() {
|
isMobileAppointment() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue