Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
b1eb833c
提交
b1eb833c
authored
12月 28, 2023
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: update
上级
b2cb1b36
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
24 行增加
和
8 行删除
+24
-8
en-US.js
langs/en-US.js
+6
-0
zh-CN.js
langs/zh-CN.js
+6
-0
home.vue
modules/my/account/home.vue
+3
-3
index.vue
modules/my/account/index.vue
+9
-5
没有找到文件。
langs/en-US.js
浏览文件 @
b1eb833c
...
...
@@ -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'
,
...
...
langs/zh-CN.js
浏览文件 @
b1eb833c
...
...
@@ -277,6 +277,12 @@ export default {
viewPaymentRecords
:
'查看缴费记录'
,
logOut
:
'退出登录'
,
personalInformation
:
'个人信息'
,
generalInformation
:
'基本信息'
,
passwordSettings
:
'密码修改'
,
feedbackFromAdmissionsOffice
:
'招生办反馈'
,
pending
:
'进行中'
,
pendingReview
:
'待进行'
,
completed
:
'已完成'
,
education
:
'教育背景'
,
workExperience
:
'工作经验'
,
learningObjectives
:
'学习目的'
,
...
...
modules/my/account/home.vue
浏览文件 @
b1eb833c
...
...
@@ -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'
)
}
},
// 获取报名信息
...
...
modules/my/account/index.vue
浏览文件 @
b1eb833c
...
...
@@ -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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论