Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
74c1f204
提交
74c1f204
authored
5月 23, 2024
作者:
lhh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
55a1271d
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
21 行增加
和
17 行删除
+21
-17
home.vue
modules/my/account/home.vue
+13
-9
index.js
modules/my/admission/form/index.js
+3
-3
qrcodePay.vue
modules/my/application/components/qrcodePay.vue
+1
-1
index.js
modules/my/application/form/index.js
+1
-1
qrcodePay.vue
modules/my/interview/components/qrcodePay.vue
+1
-1
index.js
modules/my/interview/form/index.js
+1
-1
pay.vue
modules/my/interview/pay.vue
+1
-1
没有找到文件。
modules/my/account/home.vue
浏览文件 @
74c1f204
...
...
@@ -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>
...
...
@@ -28,7 +30,7 @@
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/welcome.png"
width=
"350"
/>
<div
class=
"welcome-content"
>
<h1>
欢迎您报考
</h1>
<h2>
美国帕克大学
</h2>
<h2>
美国帕克大学
硕士项目
</h2>
<div
class=
"welcome-button"
@
click=
"handleStart"
>
马上开始
</div>
</div>
</div>
...
...
@@ -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,7 @@ export default {
// 申请面试
toInterview
()
{
if
(
this
.
activeProgress
<
1
)
{
this
.
$message
.
warning
(
'请完成报名申请
并缴报名费
'
)
this
.
$message
.
warning
(
'请完成报名申请'
)
return
}
this
.
$router
.
push
(
'/my/interview'
)
...
...
@@ -135,8 +139,8 @@ export default {
},
// 办理入学
toAdmission
()
{
if
(
this
.
activeProgress
<
3
)
{
this
.
$message
.
warning
(
'请
完成综合评审
'
)
if
(
this
.
activeProgress
<
2
)
{
this
.
$message
.
warning
(
'请
等待面试结果
'
)
return
}
this
.
$router
.
push
(
'/my/admission'
)
...
...
modules/my/admission/form/index.js
浏览文件 @
74c1f204
//
import xy from './xy'
import
xy
from
'./xy'
import
xfjn
from
'./xfjn'
export
default
function
(
_this
)
{
...
...
@@ -6,8 +6,8 @@ export default function (_this) {
id
:
'admission'
,
title
:
'入学办理'
,
children
:
[
xfjn
(
_this
)
//
xy(_this)
xfjn
(
_this
)
,
xy
(
_this
)
]
}
}
modules/my/application/components/qrcodePay.vue
浏览文件 @
74c1f204
...
...
@@ -5,7 +5,7 @@
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
</div>
<h1>
欢迎您
</h1>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,本项目的申请费为
<span>
7
00
</span>
元,请扫描二维码以完成报名。
</p>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,本项目的申请费为
<span>
100
00
</span>
元,请扫描二维码以完成报名。
</p>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i>
...
...
modules/my/application/form/index.js
浏览文件 @
74c1f204
...
...
@@ -14,7 +14,7 @@ export default function (_this) {
declare
(
_this
),
{
id
:
'application_pay'
,
title
:
'缴
报名
费'
,
title
:
'缴
纳申请
费'
,
visible
()
{
return
_this
.
visible
&&
_this
.
hasPay
}
...
...
modules/my/interview/components/qrcodePay.vue
浏览文件 @
74c1f204
...
...
@@ -5,7 +5,7 @@
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
</div>
<h1>
欢迎您
</h1>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,本项目的申请费为
<span>
7
00
</span>
元,请扫描二维码以完成报名。
</p>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,本项目的申请费为
<span>
100
00
</span>
元,请扫描二维码以完成报名。
</p>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i>
...
...
modules/my/interview/form/index.js
浏览文件 @
74c1f204
...
...
@@ -26,7 +26,7 @@ export default function (_this) {
{
required
:
true
,
id
:
'application_pay'
,
title
:
'缴
报名
费'
title
:
'缴
纳申请
费'
}
// ywcjd(_this), tjx(_this), grcs(_this), byzs(_this), form(_this)
]
...
...
modules/my/interview/pay.vue
浏览文件 @
74c1f204
...
...
@@ -4,7 +4,7 @@
<h5-pay
@
update=
"handleUpdateOrder"
v-if=
"isWechat"
></h5-pay>
<qrcode-pay
@
update=
"handleUpdateOrder"
v-else
></qrcode-pay>
<div
class=
"pay-ft"
>
<p
class=
"t2"
>
注释:
<br
/>
此处为微信二维码
<br
/>
申请费不退还
</p>
<p
class=
"t2"
>
注释:
<br
/>
此处为微信二维码
。
<br
/>
如果收到帕克大学有条件录取通知书,申请费10000元将当作学费抵消,如果收到帕克大学拒信,申请费10000元将原路退回。
</p>
</div>
<!--
<el-dialog
title=
"报名费缴费成功"
:visible
.
sync=
"dialogVisible"
:center=
"true"
:close-on-click-modal=
"false"
width=
"348px"
>
<div
class=
"dialog-pay"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论