This commit is contained in:
parent
478d4695b8
commit
e827d3aabf
|
@ -84,11 +84,6 @@ const getLocale = (label) => {
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput :label="t('SSN')" v-model="params.SSN" is-outlined />
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInput :label="t('Email')" v-model="params.email" is-outlined />
|
<VnInput :label="t('Email')" v-model="params.email" is-outlined />
|
||||||
|
|
|
@ -40,7 +40,7 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
label: t('tableColumns.name'),
|
label: t('tableColumns.firstName'),
|
||||||
isTitle: true,
|
isTitle: true,
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
|
@ -78,24 +78,6 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(row.department),
|
format: (row, dashIfEmpty) => dashIfEmpty(row.department),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
name: 'fi',
|
|
||||||
label: t('tableColumns.fi'),
|
|
||||||
isTitle: true,
|
|
||||||
columnFilter: {
|
|
||||||
name: 'fi',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
name: 'SSN',
|
|
||||||
label: t('tableColumns.SSN'),
|
|
||||||
isTitle: true,
|
|
||||||
columnFilter: {
|
|
||||||
name: 'SSN',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
passwordRequirements: 'The password must have at least { length } length characters, {nAlpha} alphabetic characters, {nUpper} capital letters, {nDigits} digits and {nPunct} symbols (Ex: $%&.)\n'
|
passwordRequirements: 'The password must have at least { length } length characters, {nAlpha} alphabetic characters, {nUpper} capital letters, {nDigits} digits and {nPunct} symbols (Ex: $%&.)\n'
|
||||||
tableColumns:
|
tableColumns:
|
||||||
id: ID
|
id: ID
|
||||||
name: Name
|
firstName: First name
|
||||||
lastName: Last Name
|
lastName: Last Name
|
||||||
userName: User Name
|
userName: User Name
|
||||||
department: Department
|
department: Department
|
||||||
|
|
|
@ -6,7 +6,7 @@ External: Externo
|
||||||
passwordRequirements: 'La contraseña debe tener al menos { length } caracteres de longitud, {nAlpha} caracteres alfabéticos, {nUpper} letras mayúsculas, {nDigits} dígitos y {nPunct} símbolos (Ej: $%&.)'
|
passwordRequirements: 'La contraseña debe tener al menos { length } caracteres de longitud, {nAlpha} caracteres alfabéticos, {nUpper} letras mayúsculas, {nDigits} dígitos y {nPunct} símbolos (Ej: $%&.)'
|
||||||
tableColumns:
|
tableColumns:
|
||||||
id: ID
|
id: ID
|
||||||
name: Nombre
|
firstName: Nombre
|
||||||
lastName: Apellidos
|
lastName: Apellidos
|
||||||
userName: Nombre de usuario
|
userName: Nombre de usuario
|
||||||
department: Departamento
|
department: Departamento
|
||||||
|
|
Loading…
Reference in New Issue