no message

This commit is contained in:
kuaifan 2021-06-17 12:40:37 +08:00
parent f626160eb5
commit f047ed2a82
2 changed files with 14 additions and 11 deletions

View File

@ -67,7 +67,7 @@ return [
| |
*/ */
'timezone' => 'UTC', 'timezone' => 'PRC',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View File

@ -97,17 +97,20 @@ export default {
this.getTask(time); this.getTask(time);
}, },
projectList(data) { projectList: {
const list = data.map((project) => { handler(data) {
return { const list = data.map((project) => {
id: String(project.id), return {
name: project.name, id: String(project.id),
name: project.name,
}
});
if (JSON.stringify(list) != JSON.stringify(this.calendarList)) {
this.calendarList = list;
} }
}); },
if (JSON.stringify(list) != JSON.stringify(this.calendarList)) { immediate: true,
this.calendarList = list; },
}
}
}, },
methods: { methods: {