Aggiunta del Bottone "Aggiungi"

This commit is contained in:
Surya Paolo
2022-12-01 21:44:33 +01:00
parent bf1e9fc982
commit 07f5f1c4c9
14 changed files with 864 additions and 550 deletions

View File

@@ -39,6 +39,7 @@ import { CMyCardPopup } from '@/components/CMyCardPopup'
import { CMyCardGrpPopup } from '@/components/CMyCardGrpPopup'
import { CMyCardCircuitPopup } from '@/components/CMyCardCircuitPopup'
import { useRouter } from 'vue-router'
import { table } from 'console'
export default defineComponent({
name: 'CBarSelection',
@@ -276,7 +277,7 @@ export default defineComponent({
}
function visButtRow() {
return false
return true
}
function gotoPageSel() {
@@ -286,6 +287,10 @@ export default defineComponent({
}
}
function createNewRecordDialog() {
globalStore.addNewRecord = tablesel.value
}
created()
onMounted(mounted)
@@ -329,6 +334,7 @@ export default defineComponent({
optionsMainCards,
tablesel,
gotoPageSel,
createNewRecordDialog,
}
}
})