- Added TablesList page

- Added Insert Record empty
This commit is contained in:
Paolo Arena
2019-10-20 01:22:38 +02:00
parent 4a7c68fbd5
commit 313a7db77d
16 changed files with 292 additions and 148 deletions

View File

@@ -37,16 +37,11 @@ export default class Header extends Vue {
public clCloudDownload: string = ''
public clCloudUp_Indexeddb: string = ''
public clCloudDown_Indexeddb: string = 'clIndexeddbsend'
public right: boolean = false
public photo = ''
public visuimg: boolean = true
get getappname(){
if (Screen.width < 400) {
return this.$t('msg.myAppNameShort')
} else {
return this.$t('msg.myAppName')
}
get tools() {
return tools
}
get conn_changed() {
@@ -110,6 +105,14 @@ export default class Header extends Vue {
localStorage.setItem(tools.localStorage.leftDrawerOpen, value.toString())
}
get rightDrawerOpen() {
return GlobalStore.state.RightDrawerOpen
}
set rightDrawerOpen(value) {
GlobalStore.state.RightDrawerOpen = value
}
get lang() {
return this.$q.lang.isoName
}
@@ -380,7 +383,7 @@ export default class Header extends Vue {
}
public clickregister() {
this.right = false
this.rightDrawerOpen = false
this.$router.replace('/signup')
}
}