Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
9233806d
提交
9233806d
authored
12月 16, 2025
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化欢迎界面,更新按钮文本和样式
上级
3defa66e
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
25 行增加
和
19 行删除
+25
-19
home.vue
modules/my/account/home.vue
+25
-19
没有找到文件。
modules/my/account/home.vue
浏览文件 @
9233806d
...
...
@@ -3,7 +3,9 @@
<div
class=
"card"
>
<div
class=
"result"
>
<div
class=
"result-left"
>
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_icon.png"
/>
{{
$t
(
'application.feedbackFromAdmissionsOffice'
)
}}
<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>
...
...
@@ -24,13 +26,17 @@
</div>
<div
class=
"welcome"
v-if=
"welcomeShow"
>
<div
class=
"inner"
>
<
div
class=
"welcome-close"
@
click=
"handleClose"
></div
>
<
!-- <div class="welcome-close" @click="handleClose"></div> --
>
<div
class=
"welcome-main"
>
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/welcome.png"
width=
"350"
/>
<div
class=
"welcome-content"
>
<h1>
欢迎您报考
</h1>
<h2>
SHMS瑞士酒店管理大学
</h2>
<div
class=
"welcome-button"
@
click=
"handleStart"
>
马上开始
</div>
<h2>
瑞士酒店管理大学MBA
</h2>
<!-- <div class="welcome-button" @click="handleStart">马上开始</div> -->
<div
class=
"welcome-button"
@
click=
"handleStart('酒店文旅方向')"
>
酒店文旅方向
</div>
<div
style=
"margin-left: 20px"
class=
"welcome-button"
@
click=
"handleStart('酒店资产管理方向')"
>
酒店资产管理方向
</div>
</div>
</div>
</div>
...
...
@@ -52,10 +58,10 @@ export default {
0
:
[
'FILLING'
,
'PREPAYMENT'
],
1
:
[
'INTERVIEW_APPLICATION'
,
'AUDITION'
,
'INTERVIEW'
,
'PAYMENT'
],
2
:
[
'REGISTRATION'
],
3
:
[
'CLOSED'
]
3
:
[
'CLOSED'
]
,
},
result
:
{},
welcomeShow
:
false
welcomeShow
:
false
,
}
},
computed
:
{
...
...
@@ -70,7 +76,7 @@ export default {
}
}
return
0
}
}
,
},
methods
:
{
// 获取进度值
...
...
@@ -83,7 +89,7 @@ export default {
},
// 获取报名信息
getApplication
()
{
api
.
getApplication
().
then
(
response
=>
{
api
.
getApplication
().
then
(
(
response
)
=>
{
const
{
data
,
error
,
message
}
=
response
if
(
error
.
toString
()
===
'0'
)
{
const
{
material
,
progress
}
=
data
...
...
@@ -101,7 +107,7 @@ export default {
},
// 获取报名审核状态
getApplicationStatus
()
{
api
.
getApplicationStatus
().
then
(
response
=>
{
api
.
getApplicationStatus
().
then
(
(
response
)
=>
{
this
.
result
=
response
.
data
})
},
...
...
@@ -142,7 +148,7 @@ export default {
nextBtnText
:
'下一步'
,
onReset
:
()
=>
{
window
.
localStorage
.
setItem
(
this
.
user
.
id
,
true
)
}
}
,
})
// Define the steps for introduction
...
...
@@ -153,34 +159,34 @@ export default {
className
:
'first-step-popover-class'
,
title
:
'第一步:'
,
description
:
'点击<span style="color:#af1b40">报名申请</span>,进入基本信息的填写。'
,
position
:
'bottom-right'
}
position
:
'bottom-right'
,
}
,
},
{
element
:
'.nav-interview'
,
popover
:
{
title
:
'第二步:'
,
description
:
'点击<span style="color:#af1b40">申请面试</span>,进入面试所需材料的上传。'
,
position
:
'bottom-right'
}
position
:
'bottom-right'
,
}
,
},
{
element
:
'.nav-admission'
,
popover
:
{
title
:
'第三步:'
,
description
:
'点击<span style="color:#af1b40">办理入学</span>,进入办理入学材料的上传。'
,
position
:
'bottom-right'
}
}
position
:
'bottom-right'
,
}
,
}
,
])
driver
.
start
()
}
}
,
},
beforeMount
()
{
this
.
getApplication
()
this
.
getApplicationStatus
()
}
}
,
}
</
script
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论