@pisell/pisellos 0.0.74 → 0.0.75
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.
|
@@ -296,7 +296,7 @@ export var BookingByStepImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
296
296
|
while (1) switch (_context4.prev = _context4.next) {
|
|
297
297
|
case 0:
|
|
298
298
|
_context4.next = 2;
|
|
299
|
-
return this.request.get("/schedule");
|
|
299
|
+
return this.request.get("/schedule?num=999");
|
|
300
300
|
case 2:
|
|
301
301
|
scheduleList = _context4.sent;
|
|
302
302
|
this.store.schedule.setScheduleList(((_scheduleList$data = scheduleList.data) === null || _scheduleList$data === void 0 ? void 0 : _scheduleList$data.list) || []);
|
|
@@ -203,7 +203,7 @@ var BookingByStepImpl = class extends import_BaseModule.BaseModule {
|
|
|
203
203
|
// 加载当前店铺下所有 schedule
|
|
204
204
|
async loadAllSchedule() {
|
|
205
205
|
var _a;
|
|
206
|
-
const scheduleList = await this.request.get(`/schedule`);
|
|
206
|
+
const scheduleList = await this.request.get(`/schedule?num=999`);
|
|
207
207
|
this.store.schedule.setScheduleList(((_a = scheduleList.data) == null ? void 0 : _a.list) || []);
|
|
208
208
|
}
|
|
209
209
|
// ui 层提供日期的起始范围,返回一个起始范围内日期的可用情况
|