Website.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <v-container>
  3. <v-row>
  4. <v-col cols="6">
  5. <div>{{ $t('your_opentalent_website_is')}} : </div>
  6. <div class="mb-1">{{ organizationProfile.website }}</div>
  7. <div>{{ $t('record_a_new_subdomain')}}</div>
  8. <v-text-field class="mb-1"></v-text-field>
  9. <UiInputText
  10. v-model="parameters.otherWebsite"
  11. field="otherWebsite"
  12. />
  13. </v-col>
  14. <v-col cols="6">
  15. <div>{{ $t('subdomains_history') }}</div>
  16. <div>...</div>
  17. <UiInputCheckbox
  18. v-model="parameters.desactivateOpentalentSiteWeb"
  19. field="desactivateOpentalentSiteWeb"
  20. />
  21. <UiInputAutocomplete field="publicationDirectors"/>
  22. </v-col>
  23. </v-row>
  24. </v-container>
  25. </template>
  26. <script setup lang="ts">
  27. import {PropType} from "@vue/runtime-core";
  28. import {useOrganizationProfileStore} from "~/stores/organizationProfile";
  29. import Parameters from "~/models/Organization/Parameters";
  30. const props = defineProps({
  31. parameters: {
  32. type: Object as PropType<Parameters>,
  33. required: true
  34. }
  35. })
  36. const organizationProfile = useOrganizationProfileStore()
  37. </script>
  38. <style scoped lang="scss">
  39. </style>