- CMyPopupEdit

- Star
- Insert and Edit
- Update quasar 3.2.4
This commit is contained in:
Paolo Arena
2021-12-02 10:12:57 +01:00
parent ea9822e5f6
commit 5ae0518030
32 changed files with 3849 additions and 3335 deletions

View File

@@ -9,6 +9,7 @@ import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { colmySkills } from '@store/Modules/fieldsTable'
import { CGridTableRec } from '@/components/CGridTableRec'
import { IMySkill, ISkill } from 'model'
export default defineComponent({
name: 'CSkill',
@@ -47,10 +48,25 @@ export default defineComponent({
const data = await globalStore.saveSubRec(mydata)
}
function getdefaultnewrec(): any {
return {
_id: 0,
idSkill: 0,
idStatusSkill: [],
idCity: [],
NumLevel: 0,
photos: [],
note: '',
subTitle: '',
}
}
return {
tools,
costanti,
colmySkills,
getdefaultnewrec,
}
},
})