no message
This commit is contained in:
parent
b0eb7770ac
commit
634b63241b
@ -103,7 +103,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.lists[key].lists.push(item);
|
this.lists[key].lists.push(item);
|
||||||
});
|
});
|
||||||
this.hasMorePages = data.hasMorePages;
|
this.hasMorePages = data.current_page < data.last_page;
|
||||||
this.totalNum = data.total;
|
this.totalNum = data.total;
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.loadIng--;
|
this.loadIng--;
|
||||||
|
2
resources/assets/js/store/actions.js
vendored
2
resources/assets/js/store/actions.js
vendored
@ -668,7 +668,7 @@ export default {
|
|||||||
const column = state.projectDetail.project_column.find(({id}) => id === task.column_id);
|
const column = state.projectDetail.project_column.find(({id}) => id === task.column_id);
|
||||||
if (column) {
|
if (column) {
|
||||||
const project_task = column.project_task.find(({id}) => id === task.parent_id)
|
const project_task = column.project_task.find(({id}) => id === task.parent_id)
|
||||||
if (project_task) {
|
if (project_task && project_task.sub_task) {
|
||||||
let index = project_task.sub_task.findIndex(({id}) => id === task.id)
|
let index = project_task.sub_task.findIndex(({id}) => id === task.id)
|
||||||
if (index === -1) {
|
if (index === -1) {
|
||||||
project_task.sub_task.push(task);
|
project_task.sub_task.push(task);
|
||||||
|
@ -396,6 +396,15 @@
|
|||||||
height: 59px;
|
height: 59px;
|
||||||
line-height: 59px;
|
line-height: 59px;
|
||||||
}
|
}
|
||||||
|
&.logs-loading {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
.common-loading {
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user