This commit is contained in:
parent
11afabbaf8
commit
ffe6e73b63
|
@ -8,6 +8,8 @@ import axios from 'axios';
|
|||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||
import FetchData from 'src/components/FetchData.vue';
|
||||
import VnInput from 'src/components/common/VnInput.vue';
|
||||
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||
const { openConfirmationModal } = useVnConfirm();
|
||||
|
||||
const { t } = useI18n();
|
||||
const columns = computed(() => [
|
||||
|
@ -57,6 +59,8 @@ const columns = computed(() => [
|
|||
),
|
||||
() => removeLine(row.id)
|
||||
),
|
||||
|
||||
disable: (row) => row.id,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -117,15 +121,13 @@ async function upsertI18n(data) {
|
|||
data.hasChanges = false;
|
||||
}
|
||||
|
||||
// async function removeLine(id) {
|
||||
// try {
|
||||
// await axios.delete(`TicketRequests/${id}`);
|
||||
// notify(t('globals.dataSaved'), 'positive');
|
||||
// location.reload();
|
||||
// } catch (err) {
|
||||
// console.error('Error ', err);
|
||||
// }
|
||||
// }
|
||||
async function removeLine(id) {
|
||||
try {
|
||||
console.log({ id }, 'eliminado');
|
||||
} catch (err) {
|
||||
console.error('Error ', err);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
Loading…
Reference in New Issue