ソースを参照

[Administration] Distributions > calendrier : dates passées dans une couleur différente #1269

feature/souke
Guillaume Bourgeois 1年前
コミット
a7f88403c6
1個のファイルの変更14行の追加2行の削除
  1. +14
    -2
      backend/web/js/vuejs/distribution-index.js

+ 14
- 2
backend/web/js/vuejs/distribution-index.js ファイルの表示

@@ -212,11 +212,23 @@ var app = new Vue({
}

if (distributions.length) {
var fillMode = 'solid';
var dayToday = app.formatDate(new Date());
for (var i = 0; i < distributions.length; i++) {
if(distributions[i].date < dayToday) {
fillMode = 'outline';
}
else {
fillMode = 'solid';
}

app.calendar.attrs.push({
key: distributions[i].date,
highlight: true,
dates: distributions[i].date
dates: distributions[i].date,
highlight: {
color: 'green',
fillMode: fillMode
}
});

if (distributions[i].date == dateFormatCompare) {

読み込み中…
キャンセル
保存