diff --git a/src/modules/10_registry/05_Other/03_FileOther.vue b/src/modules/10_registry/05_Other/03_FileOther.vue new file mode 100644 index 0000000..4682422 --- /dev/null +++ b/src/modules/10_registry/05_Other/03_FileOther.vue @@ -0,0 +1,138 @@ + + + + + diff --git a/src/modules/10_registry/store/registry.ts b/src/modules/10_registry/store/registry.ts index 075e83f..8c7aa40 100644 --- a/src/modules/10_registry/store/registry.ts +++ b/src/modules/10_registry/store/registry.ts @@ -10,6 +10,7 @@ export const useRegistryInFormationStore = defineStore( () => { const typeProfile = ref("OFFICER"); const profileId = ref(""); + const citizenId = ref(""); function typeChangeName(val: string) { switch (val) { @@ -29,6 +30,6 @@ export const useRegistryInFormationStore = defineStore( return "-"; } } - return { typeChangeName, typeProfile, profileId }; + return { typeChangeName, typeProfile, profileId, citizenId }; } ); diff --git a/src/modules/10_registry/tabs/05_other.vue b/src/modules/10_registry/tabs/05_other.vue index 09b87e2..7dde665 100644 --- a/src/modules/10_registry/tabs/05_other.vue +++ b/src/modules/10_registry/tabs/05_other.vue @@ -4,6 +4,7 @@ import { useRouter } from "vue-router"; /** component */ import Other from "@/modules/10_registry/05_Other/01_Other.vue"; import File from "@/modules/10_registry/05_Other/02_File.vue"; +import FileOther from "@/modules/10_registry/05_Other/03_FileOther.vue"; const router = useRouter(); @@ -27,6 +28,7 @@ const router = useRouter();
+