提交 b1eb833c authored 作者: 王鹏飞's avatar 王鹏飞

chore: update

上级 b2cb1b36
......@@ -277,6 +277,12 @@ export default {
viewPaymentRecords: 'View Payment Records',
logOut: 'Log Out',
personalInformation: 'Personal Information',
generalInformation: 'General Information',
passwordSettings: 'Password Settings',
feedbackFromAdmissionsOffice: 'Feedback from Admissions Office',
pending: 'Pending',
pendingReview: 'Pending Review',
completed: 'Completed',
education: 'Education',
workExperience: 'Work Experience',
learningObjectives: 'Learning Objectives',
......
......@@ -277,6 +277,12 @@ export default {
viewPaymentRecords: '查看缴费记录',
logOut: '退出登录',
personalInformation: '个人信息',
generalInformation: '基本信息',
passwordSettings: '密码修改',
feedbackFromAdmissionsOffice: '招生办反馈',
pending: '进行中',
pendingReview: '待进行',
completed: '已完成',
education: '教育背景',
workExperience: '工作经验',
learningObjectives: '学习目的',
......
......@@ -3,7 +3,7 @@
<div class="card">
<div class="result">
<div class="result-left">
<img src="https://webapp-pub.ezijing.com/project/application/images/my_icon.png" />招生办反馈
<img src="https://webapp-pub.ezijing.com/project/application/images/my_icon.png" />{{ $t('application.feedbackFromAdmissionsOffice') }}
</div>
<div class="result-right">{{ result.submit_status_desc || '未收到报名信息' }}</div>
</div>
......@@ -76,9 +76,9 @@ export default {
// 获取进度值
getProgressStatusText(index) {
if (this.activeProgress === index) {
return '进行中'
return this.$t('application.pending')
} else {
return this.activeProgress > index ? '已完成' : '待进行'
return this.activeProgress > index ? this.$t('application.completed') : this.$t('application.pendingReview')
}
},
// 获取报名信息
......
......@@ -13,8 +13,12 @@
:submitText="$t('application.save')"
>
<template #aside-append>
<div class="aside-payment"><a href="https://accounts.ezijing.com/payment" target="_blank">查看缴费记录</a></div>
<div class="aside-logout" @click="$store.dispatch('logout')"><span>退出登录</span></div>
<div class="aside-payment">
<a href="https://accounts.ezijing.com/payment" target="_blank">{{ $t('application.viewPaymentRecords') }}</a>
</div>
<div class="aside-logout" @click="$store.dispatch('logout')">
<span>{{ $t('application.logOut') }}</span>
</div>
</template>
<!-- 首页 -->
<app-home v-if="currentActive === 'account'" />
......@@ -41,10 +45,10 @@ export default {
menus: [
{
id: 'account',
title: '个人信息',
title: this.$t('application.personalInformation'),
children: [
{ id: 'account_info', title: '基本信息' },
{ id: 'account_password', title: '密码修改' }
{ id: 'account_info', title: this.$t('application.generalInformation') },
{ id: 'account_password', title: this.$t('application.passwordSettings') }
]
}
],
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论