diff --git a/.ottotime b/.ottotime index c31f499..820c159 100644 --- a/.ottotime +++ b/.ottotime @@ -82,4 +82,11 @@ 1767388089- 13:30 1767389489- 0:04 1767389854-280:04 -1767423731- 6:18 +1767423731- 15:01 +1767425256- 4:41 +1767427391- 51:16 +1767432205- 7:35 +1767447810- 11:06 +1767449176- 0:51 +1767451918- 2:19 +1767453092- 0:00 diff --git a/components/UserAddress.vue b/components/UserAddress.vue new file mode 100644 index 0000000..d5d430d --- /dev/null +++ b/components/UserAddress.vue @@ -0,0 +1,49 @@ + + + + + \ No newline at end of file diff --git a/package.json b/package.json index 7e8f7e7..347231c 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "eurocars-rent", "type": "module", - "version": "1.0.6", - "versionCode": 6, + "version": "1.0.7", + "versionCode": 7, "scripts": { "build": "nuxt build", "dev": "nuxt dev", diff --git a/pages/index.vue b/pages/index.vue index 35dd00f..68aaf84 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -28,6 +28,9 @@ function getMont(date) { } +import { Device } from '@capacitor/device'; +const deviceInfo = await Device.getInfo(); +const deviceId = await Device.getId(); diff --git a/pages/profile/index.vue b/pages/profile/index.vue index 9d13f98..9754c0c 100644 --- a/pages/profile/index.vue +++ b/pages/profile/index.vue @@ -65,6 +65,11 @@ :invalid="!user.tartozkodasicim" /> + +
+ Lakcím: +
+
@@ -100,7 +105,7 @@ const showDialog = ref(false) const dialogType = ref<'success' | 'error'>('success') const dialogMessage = ref('') const dialogErrors = ref() - +const lakcimData = ref() // Kötelező mezők listája const requiredFields = [ 'nev', diff --git a/plugins/capacitor.client.ts b/plugins/capacitor.client.ts index 58862ea..9406994 100644 --- a/plugins/capacitor.client.ts +++ b/plugins/capacitor.client.ts @@ -41,6 +41,10 @@ export default defineNuxtPlugin(async (nuxtApp) => { placeStore.places = data.value.places } + if (data.value?.countries) { + configStore.countries = data.value.countries + } + // Csak natív platformon fut if (!Capacitor.isNativePlatform()) { return