7355-fixesAccountMigration #643

Merged
carlossa merged 5 commits from 7355-fixesAccountMigration into dev 2024-08-27 08:46:11 +00:00
1 changed files with 10 additions and 3 deletions
Showing only changes of commit c84786e053 - Show all commits

View File

@ -1,5 +1,5 @@
<script setup>
import { ref } from 'vue';
import { ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
@ -9,21 +9,28 @@ import VnSelect from 'src/components/common/VnSelect.vue';
const { t } = useI18n();
const route = useRoute();
const loading = ref(false);
const rolesOptions = ref([]);
const formModelRef = ref();
watch(
() => route.params.id,
() => formModelRef.value.reset()
);
carlossa marked this conversation as resolved Outdated

eliminar console.log

eliminar console.log
</script>
<template>
<FetchData url="VnRoles" auto-load @on-fetch="(data) => (rolesOptions = data)" />
<QSpinner v-if="loading" color="primary" size="md" />
<FormModel
ref="formModelRef"
model="AccountPrivileges"
:url="`VnUsers/${route.params.id}/privileges`"
:url-create="`VnUsers/${route.params.id}/privileges`"
url="VnUsers/preview"
auto-load
@on-data-saved="formModelRef.fetch()"
>
<template #form="{ data }">
{{ data }}
<div class="q-gutter-y-sm">
<QCheckbox
v-model="data.hasGrant"