BugFix Watch Reload Tabs

This commit is contained in:
ma0068
2024-04-18 14:54:18 +02:00
parent 9da2854e61
commit eda68ef5e0
5 changed files with 23 additions and 3 deletions
@@ -137,6 +137,11 @@ export default {
filteredInventar: []
}
},
watch: {
uid(){
this.$refs.table.tabulator.setData('api/frontend/v1/stv/Betriebsmittel/getAllBetriebsmittel/' + this.uid + '/' + this.person_id);
}
},
methods: {
actionEditBetriebsmittel(betriebsmittelperson_id){
this.statusNew = false;
@@ -168,6 +168,11 @@ export default{
}, {}));
}
},
watch: {
uid(){
this.$refs.table.tabulator.setData('api/frontend/v1/stv/Kontakt/getAdressen/' + this.uid);
}
},
methods:{
actionNewAdress(){
this.$refs.newAdressModal.show();
@@ -266,9 +271,6 @@ export default{
this.filteredFirmen = result.data.retval;
});
},
reload(){
this.$refs.table.reloadTable();
},
hideModal(modalRef){
this.$refs[modalRef].hide();
},
@@ -114,6 +114,11 @@ export default{
}
}
},
watch: {
uid(){
this.$refs.table.tabulator.setData('api/frontend/v1/stv/Kontakt/getBankverbindung/' + this.uid);
}
},
methods:{
actionNewBankverbindung(){
this.$refs.newBankverbindungModal.show();
@@ -111,6 +111,11 @@ export default{
filteredStandorte: null
}
},
watch: {
uid(){
this.$refs.table.tabulator.setData('api/frontend/v1/stv/Kontakt/getKontakte/' + this.uid);
}
},
methods:{
actionNewContact(){
this.$refs.newContactModal.show();
@@ -233,6 +233,9 @@ export default{
const start = this.status_kurzbz;
},
deep: true
},
prestudent_id(){
this.$refs.table.tabulator.setData('api/frontend/v1/stv/Status/getHistoryPrestudent/' + this.prestudent_id);
}
},
methods: {