瀏覽代碼

[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) {

Loading…
取消
儲存