fix bug
This commit is contained in:
parent
09d812a1f6
commit
86c6bcc4cf
1 changed files with 4 additions and 3 deletions
|
|
@ -258,6 +258,7 @@ function close() {
|
|||
modal.value = false;
|
||||
member.value = "";
|
||||
selected.value = [];
|
||||
rowsDirector.value = [];
|
||||
}
|
||||
|
||||
function updatePagination(newPagination: any) {
|
||||
|
|
@ -324,13 +325,13 @@ async function getPerson() {
|
|||
);
|
||||
totalList.value = Math.ceil(dataTotal / pagination.value.rowsPerPage);
|
||||
total.value = dataTotal;
|
||||
hideLoader();
|
||||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
hideLoader();
|
||||
})
|
||||
.finally(() => {});
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
});
|
||||
}
|
||||
|
||||
function onDelete(id: string) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue