mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
BugFix Watch Reload Tabs
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user