no message
This commit is contained in:
parent
f626160eb5
commit
f047ed2a82
@ -67,7 +67,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'timezone' => 'UTC',
|
'timezone' => 'PRC',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -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: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user