|
@@ -59,6 +59,8 @@ export default {
|
|
|
dayCellContent:function(arg){ //单元格日期显示为 1 2 3...
|
|
|
return arg.date.getDate()
|
|
|
},
|
|
|
+ dayMaxEventRows:6,//一天最多展示6条
|
|
|
+ moreLinkClick:(info)=>{this.handleDateClick(info)},//点击more时触发
|
|
|
events:[
|
|
|
/* {
|
|
|
id:1,
|
|
@@ -70,7 +72,6 @@ export default {
|
|
|
//↑此外的属性会被FullCalendar插件放到extendedProps属性中
|
|
|
//extendedProps
|
|
|
isTextBold:true,//是否加粗
|
|
|
-
|
|
|
}, */
|
|
|
],
|
|
|
dateClick:this.handleDateClick,
|
|
@@ -117,6 +118,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .fc-more-popover{
|
|
|
+ display:none !important;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|