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,7 +97,8 @@ export default {
this.getTask(time); this.getTask(time);
}, },
projectList(data) { projectList: {
handler(data) {
const list = data.map((project) => { const list = data.map((project) => {
return { return {
id: String(project.id), id: String(project.id),
@ -107,7 +108,9 @@ export default {
if (JSON.stringify(list) != JSON.stringify(this.calendarList)) { if (JSON.stringify(list) != JSON.stringify(this.calendarList)) {
this.calendarList = list; this.calendarList = list;
} }
} },
immediate: true,
},
}, },
methods: { methods: {