console.log
This commit is contained in:
parent
d69b74561c
commit
d59355e6b8
|
|
@ -132,7 +132,7 @@ const getListConflict = async (textSearch = "", filterExtended = "") => {
|
|||
request.url,
|
||||
request.payload_full,
|
||||
);
|
||||
console.log("res", res);
|
||||
// console.log("res", res);
|
||||
|
||||
listConflicts.value = res.hits;
|
||||
pagination.value.total = res.hits.total.value;
|
||||
|
|
@ -148,7 +148,7 @@ const getListConflict = async (textSearch = "", filterExtended = "") => {
|
|||
function conflictDetails(event) {
|
||||
conflictSelected.value = event.item;
|
||||
activeTabKey.value = "RelationEdit";
|
||||
console.log("event", event);
|
||||
// console.log("event", event);
|
||||
}
|
||||
onMounted(() => {
|
||||
getListConflict();
|
||||
|
|
@ -156,20 +156,20 @@ onMounted(() => {
|
|||
});
|
||||
|
||||
function myContentAction({ action, payload }) {
|
||||
console.log("payload ==> ", payload);
|
||||
console.log("action ==> ", action);
|
||||
// console.log("payload ==> ", payload);
|
||||
// console.log("action ==> ", action);
|
||||
if (action === "pagination") {
|
||||
const { page, limit } = payload;
|
||||
pagination.value.page = page;
|
||||
pagination.value.limit = limit;
|
||||
console.log("pagination.value ==> ", pagination.value);
|
||||
// console.log("pagination.value ==> ", pagination.value);
|
||||
|
||||
getListConflict();
|
||||
return;
|
||||
}
|
||||
}
|
||||
function myHeaderToolsSearch(data) {
|
||||
console.log("dataqqqq ==> ", data);
|
||||
// console.log("dataqqqq ==> ", data);
|
||||
getListConflict(data);
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user