Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
11b53cdf
提交
11b53cdf
authored
5月 11, 2024
作者:
lhh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
c64903e4
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
15 行增加
和
13 行删除
+15
-13
home.vue
modules/my/account/home.vue
+12
-7
index.js
modules/my/admission/form/index.js
+2
-5
index.vue
modules/my/interview/index.vue
+1
-1
没有找到文件。
modules/my/account/home.vue
浏览文件 @
11b53cdf
...
...
@@ -2,7 +2,9 @@
<div
class=
"my"
>
<div
class=
"card"
>
<div
class=
"result"
>
<div
class=
"result-left"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_icon.png"
/>
招生办反馈
</div>
<div
class=
"result-left"
>
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_icon.png"
/>
招生办反馈
</div>
<!--
<div
class=
"result-right"
>
{{
result
.
submit_status_desc
||
'未收到报名信息'
}}
</div>
-->
</div>
</div>
...
...
@@ -10,12 +12,12 @@
<ul
class=
"nav"
>
<li
class=
"nav-application"
@
click=
"toApplication"
></li>
<li
class=
"nav-interview"
@
click=
"toInterview"
></li>
<
li
class=
"nav-review"
@
click=
"toReview"
></li
>
<
!--
<li
class=
"nav-review"
@
click=
"toReview"
></li>
--
>
<li
class=
"nav-admission"
@
click=
"toAdmission"
></li>
</ul>
<div
class=
"progress"
>
<el-steps
:active=
"activeProgress"
finish-status=
"success"
align-center
>
<el-step
v-for=
"(item, index) in
4
"
:key=
"index"
>
<el-step
v-for=
"(item, index) in
3
"
:key=
"index"
>
<template
#
title
>
{{
getProgressStatusText
(
index
)
}}
</
template
>
</el-step>
</el-steps>
...
...
@@ -51,8 +53,8 @@ export default {
0
:
[
'FILLING'
],
1
:
[
'INTERVIEW_APPLICATION'
,
'AUDITION'
,
'INTERVIEW'
,
'PREPAYMENT'
],
2
:
[
'REGISTRATION'
,
'PAYMENT'
],
3
:
[
'CLOSED'
],
4
:
[
'FINISHED
'
]
3
:
[
'CLOSED'
,
'FINISHED'
]
// 4: ['
']
},
result
:
{},
welcomeShow
:
false
...
...
@@ -65,10 +67,12 @@ export default {
activeProgress
()
{
for
(
const
key
in
this
.
submissionStage
)
{
const
list
=
this
.
submissionStage
[
key
]
console
.
log
(
this
.
material
.
submission_stage
,
'this.material.submission_stage'
)
if
(
list
.
includes
(
this
.
material
.
submission_stage
))
{
// if (key === '3' && !this.isPay) {
// return 2
// }
console
.
log
(
parseInt
(
key
),
'parseInt(key)parseInt(key)'
)
return
parseInt
(
key
)
}
}
...
...
@@ -121,7 +125,8 @@ export default {
// 申请面试
toInterview
()
{
if
(
this
.
activeProgress
<
1
)
{
this
.
$message
.
warning
(
'请完成报名申请并缴报名费'
)
// this.$message.warning('请完成报名申请并缴报名费')
this
.
$message
.
warning
(
'请完成报名申请'
)
return
}
this
.
$router
.
push
(
'/my/interview'
)
...
...
@@ -136,7 +141,7 @@ export default {
// 办理入学
toAdmission
()
{
if
(
this
.
activeProgress
<
3
)
{
this
.
$message
.
warning
(
'请
完成综合评审
'
)
this
.
$message
.
warning
(
'请
等待面试结果
'
)
return
}
this
.
$router
.
push
(
'/my/admission'
)
...
...
modules/my/admission/form/index.js
浏览文件 @
11b53cdf
//
import xy from './xy'
import
xy
from
'./xy'
import
xfjn
from
'./xfjn'
export
default
function
(
_this
)
{
return
{
id
:
'admission'
,
title
:
'入学办理'
,
children
:
[
xfjn
(
_this
)
// xy(_this)
]
children
:
[
xfjn
(
_this
),
xy
(
_this
)]
}
}
modules/my/interview/index.vue
浏览文件 @
11b53cdf
...
...
@@ -56,7 +56,7 @@ export default {
immediate
:
true
,
handler
(
route
)
{
const
{
query
=
{}
}
=
route
this
.
currentActive
=
query
.
active
||
'interview_
y
wjl'
this
.
currentActive
=
query
.
active
||
'interview_
z
wjl'
}
},
showSubmittedDialog
(
value
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论