1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-13 23:20:12 +08:00

Fixed Style Role Navbar (#463)

* Fixed Style Role Navbar

* Rename translation for Client

Co-authored-by: Yamel Senih <ysenih@erpya.com>
This commit is contained in:
elsiosanchez 2020-04-24 18:15:52 -04:00 committed by GitHub
parent 4e397e5636
commit 5b3efd7a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,8 @@ export default {
profile: 'Profile', profile: 'Profile',
ProcessActivity: 'Process Logs', ProcessActivity: 'Process Logs',
Role: 'Role', Role: 'Role',
Client: 'Client',
Warehouse: 'Warehouse',
ReportViewer: 'Report Viewer' ReportViewer: 'Report Viewer'
}, },
notifications: { notifications: {

View File

@ -12,6 +12,8 @@ export default {
profile: 'Perfil', profile: 'Perfil',
ProcessActivity: 'Histórico Procesos', ProcessActivity: 'Histórico Procesos',
Role: 'Rol', Role: 'Rol',
Client: 'Compañía',
Warehouse: 'Almacén',
ReportViewer: 'Visor de Reportes' ReportViewer: 'Visor de Reportes'
}, },
notifications: { notifications: {

View File

@ -1,5 +1,6 @@
<template> <template>
<el-form> <el-form>
{{ $t('route.Role') }}
<el-select <el-select
v-model="roleUuid" v-model="roleUuid"
:filterable="!isMobile" :filterable="!isMobile"
@ -14,6 +15,7 @@
:disabled="isEmptyValue(role.uuid)" :disabled="isEmptyValue(role.uuid)"
/> />
</el-select> </el-select>
{{ $t('route.Client') }}
<el-select <el-select
v-model="organizationUuid" v-model="organizationUuid"
:filterable="!isMobile" :filterable="!isMobile"
@ -28,6 +30,7 @@
:disabled="isEmptyValue(organization.uuid)" :disabled="isEmptyValue(organization.uuid)"
/> />
</el-select> </el-select>
{{ $t('route.Warehouse') }}
<el-select <el-select
v-model="warehouseUuid" v-model="warehouseUuid"
:filterable="!isMobile" :filterable="!isMobile"