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);
},
projectList(data) {
const list = data.map((project) => {
return {
id: String(project.id),
name: project.name,
projectList: {
handler(data) {
const list = data.map((project) => {
return {
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)) {
this.calendarList = list;
}
}
},
immediate: true,
},
},
methods: {