diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index 4229b463..9ce11fc3 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -29,10 +29,10 @@ - Edit Info + {{$t('system:navbar:button:Profile')}} - Log Out + {{$t('system:navbar:button:Log Out')}} diff --git a/src/views/system/user/components/Account.vue b/src/views/system/user/components/Account.vue index fa36de65..e09e4f0b 100644 --- a/src/views/system/user/components/Account.vue +++ b/src/views/system/user/components/Account.vue @@ -26,6 +26,7 @@ export default { if (res.IsSuccess) { let msg = this.$t('system:userlist:message:ResetPassword2') msg = msg.replace('xxx', this.$route.query.userName) + msg = msg.replace('yyy', this.$route.query.email) this.$alert(msg) } }) diff --git a/src/views/system/user/components/UserInfo.vue b/src/views/system/user/components/UserInfo.vue index 4582db64..e126cfd6 100644 --- a/src/views/system/user/components/UserInfo.vue +++ b/src/views/system/user/components/UserInfo.vue @@ -38,7 +38,7 @@ - + diff --git a/src/views/system/user/list/index.vue b/src/views/system/user/list/index.vue index 950dab35..8ce40a31 100644 --- a/src/views/system/user/list/index.vue +++ b/src/views/system/user/list/index.vue @@ -291,7 +291,7 @@ export default { }, // 编辑用户 handleEditUser(data) { - this.$router.push({ path: '/system/user/edit', query: { Id: data.Id, userName: data.UserName }}) + this.$router.push({ path: '/system/user/edit', query: { Id: data.Id, userName: data.UserName, email: data.EMail }}) }, // 删除用户 handleDeleteUser(data) { diff --git a/src/views/trials/trials-workbench/index.vue b/src/views/trials/trials-workbench/index.vue index 615e80c7..550b2585 100644 --- a/src/views/trials/trials-workbench/index.vue +++ b/src/views/trials/trials-workbench/index.vue @@ -5,7 +5,7 @@
-
+
{{ $t('trials:workbench:label:pendingTasksStats') }} ({{tabList.TotalCount}})
@@ -180,7 +180,7 @@ export default {