This commit is contained in:
罗松柏 2021-03-02 17:09:52 +08:00
parent cf0b0e5e6d
commit dd5699f09b

View File

@ -1029,6 +1029,7 @@ if ($act == 'newevent') {
.recording—title { font-size: 16px; color:#686868; }
.recording—name { float: right; }
.recording—con-box { margin-top: -16px; padding-bottom: 50px; }
.yanqi { position: absolute; top:0; right:0;}
</style>
<div class='popup-bg' id='popup-bg'>
<div class="yiny" id='yiny' onclick="guanbi()"></div>
@ -1869,7 +1870,13 @@ if ($act == 'newevent') {
},
eventRender: function (event, element) {
element.html(event.title);
console.log(event)
console.log(element)
if(event.id == '7542'){
element.html(event.title + '<img class="yanqi" src="assets/images/yanqi.png"/>');
}else {
element.html(event.title);
}
},
editable: <?=$canEdit ? "true" : "false"?>,