@pisell/pisellos 2.0.41 → 2.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1191,6 +1191,21 @@ export var BookingByStepImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
1191
1191
|
_this6.store.cart.removeItem(n._id);
|
|
1192
1192
|
});
|
|
1193
1193
|
}
|
|
1194
|
+
// 如果 date.startTime 和 dateRange 里的 startTime 不一样,需要修正 dateRange
|
|
1195
|
+
var dateRange = this.store.date.getDateRange();
|
|
1196
|
+
if (dateRange !== null && dateRange !== void 0 && dateRange[0] && !dayjs(dateRange[0].date).isSame(dayjs(date.startTime), 'day')) {
|
|
1197
|
+
this.setDateRange([{
|
|
1198
|
+
date: dayjs(date.startTime).format('YYYY-MM-DD'),
|
|
1199
|
+
status: 'available',
|
|
1200
|
+
week: '',
|
|
1201
|
+
weekNum: 0
|
|
1202
|
+
}, {
|
|
1203
|
+
date: dayjs(date.endTime).format('YYYY-MM-DD'),
|
|
1204
|
+
status: 'available',
|
|
1205
|
+
week: '',
|
|
1206
|
+
weekNum: 0
|
|
1207
|
+
}]);
|
|
1208
|
+
}
|
|
1194
1209
|
}
|
|
1195
1210
|
}
|
|
1196
1211
|
}, {
|
|
@@ -2809,7 +2824,7 @@ export var BookingByStepImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
2809
2824
|
});
|
|
2810
2825
|
|
|
2811
2826
|
// 如果 firstAvailableDate 距离 startDate 大于 14 天了,则后面就不需要再找了,也是一种性能保护
|
|
2812
|
-
if (!(firstAvailableDate && dayjs(currentDate).diff(dayjs(startDate), 'day') >
|
|
2827
|
+
if (!(firstAvailableDate && dayjs(currentDate).diff(dayjs(startDate), 'day') > 31)) {
|
|
2813
2828
|
_context28.next = 9;
|
|
2814
2829
|
break;
|
|
2815
2830
|
}
|
|
@@ -637,6 +637,13 @@ var BookingByStepImpl = class extends import_BaseModule.BaseModule {
|
|
|
637
637
|
this.store.cart.removeItem(n._id);
|
|
638
638
|
});
|
|
639
639
|
}
|
|
640
|
+
const dateRange = this.store.date.getDateRange();
|
|
641
|
+
if ((dateRange == null ? void 0 : dateRange[0]) && !(0, import_dayjs.default)(dateRange[0].date).isSame((0, import_dayjs.default)(date.startTime), "day")) {
|
|
642
|
+
this.setDateRange([
|
|
643
|
+
{ date: (0, import_dayjs.default)(date.startTime).format("YYYY-MM-DD"), status: "available", week: "", weekNum: 0 },
|
|
644
|
+
{ date: (0, import_dayjs.default)(date.endTime).format("YYYY-MM-DD"), status: "available", week: "", weekNum: 0 }
|
|
645
|
+
]);
|
|
646
|
+
}
|
|
640
647
|
}
|
|
641
648
|
}
|
|
642
649
|
beforeUpdateCart(params, targetCartItem) {
|
|
@@ -2010,7 +2017,7 @@ var BookingByStepImpl = class extends import_BaseModule.BaseModule {
|
|
|
2010
2017
|
weekNum: (0, import_dayjs.default)(currentDate).day(),
|
|
2011
2018
|
status
|
|
2012
2019
|
});
|
|
2013
|
-
if (firstAvailableDate && (0, import_dayjs.default)(currentDate).diff((0, import_dayjs.default)(startDate), "day") >
|
|
2020
|
+
if (firstAvailableDate && (0, import_dayjs.default)(currentDate).diff((0, import_dayjs.default)(startDate), "day") > 31) {
|
|
2014
2021
|
break;
|
|
2015
2022
|
}
|
|
2016
2023
|
currentDate = (0, import_dayjs.default)(currentDate).add(1, "day");
|