如何使用不同日期自定义周末日期,并在完整日历中使用不同的小时数

问题描述 投票:0回答:1

我希望在月视图中显示日历,并显示行日期,例如:今天日期2018-sep-05,我将在日历中显示。

2018-9-05,
2018-9-12,
2018-9-19
2018-9-26,

正如我在周视图中所做的那样jsfidddle在这方面很好, 我想和平日视图jsfidddle2一样,但是,这里有我的dow问题,这里dow是3表示星期三,我想用相同的dow和不同的时间显示5,12,19,26个日期。 所有我想要的时间都应该适合日历

sep05 07am - 09pm, 
sep12 08am - 14pm,
sep19 10am - 13pm,

他们是以任何方式制作它或任何特技方式。

     var hiddenDaysObj = [0, 1, 2, 3, 4, 5, 6];
        hiddenDaysObj.splice(selDate.getDay(), 1);
  const calObj = {
          defaultView: 'settimana',
          defaultDate: this.cldDate,
          editable: true,
          selectable: true,
          eventLimit: true,
          allDaySlot: false,
          minTime: '07:00',
          maxTime: '22:00',
          slotDuration: '00:10:00',
          slotLabelInterval: '00:15:00',
          weekends: true,
          header: {
            left: '',
            center: '',
            right: '',
          },
          slotLabelFormat: [
            'h(:mm) a'
          ],
          viewRender: function (view, element) {
            const s = '<div class="appnt-pro-name"><h6>TIME</h6> </div>';
            element.find('.fc-axis:eq(1)').html(s);
          },

          views: {
            settimana: {
              type: 'agendaWeek',
              duration: {
                months: 1
              },
              title: 'agendaWeek',
              groupByResource: true,
              columnFormat: 'ddd M/D',
            },
          },
          resources: resources,
          events: events,
          select: select,
       hiddenDays: hiddenDaysObj,
          schedulerLicenseKey: 'GPL-My-Project-Is-Open-Source'
javascript fullcalendar fullcalendar-scheduler fullcalendar-3
1个回答
0
投票

最后我已经完成了这个https://fullcalendar.io/docs/background-events我已经在事件中推动了日期和时间。根据我的情况,我得到了@ADyson 这是finalresult jsfiddle的例子

events.push({id:1,
color:"gray",
start:"2018-09-05T10:00",
end:"2018-09-05T19:00",
rendering:"inverse-background",
},{
id:1,
color:"gray",
start:"2018-09-12T08:00",
end:"2018-09-12T13:00",
rendering:"inverse-background",
});
© www.soinside.com 2019 - 2024. All rights reserved.