Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
df01ff47
提交
df01ff47
authored
5月 20, 2024
作者:
lhh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
97e4682b
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
27 个修改的文件
包含
195 行增加
和
66 行删除
+195
-66
ApplyForm.vue
components/base/h5/ApplyForm.vue
+8
-2
Menu.vue
components/base/h5/Menu.vue
+4
-4
banners.vue
components/home/banners.vue
+2
-2
projectFeatures.vue
components/home/projectFeatures.vue
+6
-6
projectPosition.vue
components/home/projectPosition.vue
+3
-1
schoolIntroduce.vue
components/home/schoolIntroduce.vue
+5
-2
Header.vue
components/layout/h5/Header.vue
+1
-1
Foot.vue
components/layout/pc/Foot.vue
+30
-8
Head.vue
components/layout/pc/Head.vue
+9
-3
rightAside.vue
components/rightAside.vue
+21
-5
zh-CN.js
langs/zh-CN.js
+1
-1
index.vue
modules/letter/index.vue
+19
-4
qrcodePay.vue
modules/my/application/components/qrcodePay.vue
+4
-2
declare.js
modules/my/application/form/declare.js
+1
-1
answer.js
modules/my/application/form/info/answer.js
+2
-2
qrcodePay.vue
modules/my/interview/components/qrcodePay.vue
+4
-2
index.js
modules/my/interview/form/index.js
+2
-0
zwjl.js
modules/my/interview/form/zwjl.js
+32
-0
index.vue
modules/my/interview/index.vue
+11
-4
qrcodePay.vue
modules/my/review/components/qrcodePay.vue
+4
-2
indexPay.vue
modules/my/welcome/indexPay.vue
+9
-2
indexWelcome.vue
modules/my/welcome/indexWelcome.vue
+1
-1
nuxt.config.js
nuxt.config.js
+1
-1
school.vue
pages/about/school.vue
+12
-7
process.vue
pages/enroll/process.vue
+2
-2
introduce.vue
pages/project-intro/introduce.vue
+1
-1
school.vue
pages/school/school.vue
+0
-0
没有找到文件。
components/base/h5/ApplyForm.vue
浏览文件 @
df01ff47
...
@@ -16,7 +16,13 @@
...
@@ -16,7 +16,13 @@
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-item"
>
<input
type=
"text"
class=
"form-input"
placeholder=
"请输入短信验证码"
maxlength=
"4"
v-model=
"phoneCode"
/>
<input
type=
"text"
class=
"form-input"
placeholder=
"请输入短信验证码"
maxlength=
"4"
v-model=
"phoneCode"
/>
<input
type=
"button"
class=
"form-button"
:disabled=
"codeButtonDisabled"
:value=
"buttonText"
@
click=
"onSendCode"
/>
<input
type=
"button"
class=
"form-button"
:disabled=
"codeButtonDisabled"
:value=
"buttonText"
@
click=
"onSendCode"
/>
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-item"
>
<input
type=
"button"
value=
"立即预约"
class=
"form-button"
@
click=
"onSbumit"
/>
<input
type=
"button"
value=
"立即预约"
class=
"form-button"
@
click=
"onSbumit"
/>
...
@@ -40,7 +46,7 @@ export default {
...
@@ -40,7 +46,7 @@ export default {
{
label
:
'中国未来金融领袖计划'
,
value
:
'1007'
},
{
label
:
'中国未来金融领袖计划'
,
value
:
'1007'
},
{
label
:
'国际硕士保研项目'
,
value
:
'1016'
},
{
label
:
'国际硕士保研项目'
,
value
:
'1016'
},
{
label
:
'金融学硕士保研项目'
,
value
:
'1018'
},
{
label
:
'金融学硕士保研项目'
,
value
:
'1018'
},
{
label
:
'美国帕克大学
本升硕
项目'
,
value
:
'1030'
}
{
label
:
'美国帕克大学
硕士
项目'
,
value
:
'1030'
}
],
],
phoneCode
:
''
,
phoneCode
:
''
,
codeButtonDisabled
:
false
,
codeButtonDisabled
:
false
,
...
...
components/base/h5/Menu.vue
浏览文件 @
df01ff47
...
@@ -49,10 +49,10 @@ export default {
...
@@ -49,10 +49,10 @@ export default {
{
name
:
'归国政策'
,
path
:
'/returnPolicy/returnPolicy'
}
{
name
:
'归国政策'
,
path
:
'/returnPolicy/returnPolicy'
}
]
]
},
},
{
//
{
name
:
'常见问题'
,
//
name: '常见问题',
path
:
'/question/question'
//
path: '/question/question'
},
//
},
{
{
name
:
'报名申请'
,
name
:
'报名申请'
,
onClick
:
()
=>
{
onClick
:
()
=>
{
...
...
components/home/banners.vue
浏览文件 @
df01ff47
...
@@ -2,10 +2,10 @@
...
@@ -2,10 +2,10 @@
<div
:class=
"isMobile ? 'is-h5' : 'is-pc'"
>
<div
:class=
"isMobile ? 'is-h5' : 'is-pc'"
>
<div
class=
"banner-content"
>
<div
class=
"banner-content"
>
<a
href=
"/my"
>
<a
href=
"/my"
>
<img
class=
"img"
src=
"https://webapp-pub.ezijing.com/project/
park
-plus/banner.png"
/>
<img
class=
"img"
src=
"https://webapp-pub.ezijing.com/project/
xmn
-plus/banner.png"
/>
</a>
</a>
<!--
<div
class=
"content_desc"
>
<!--
<div
class=
"content_desc"
>
<div
class=
"desc_cn"
>
美国帕克大学
本升硕
项目
</div>
<div
class=
"desc_cn"
>
美国帕克大学
硕士
项目
</div>
<div
class=
"desc_en"
>
Stevens Institute of Technology Master of Engineering in Engineering Management
</div>
<div
class=
"desc_en"
>
Stevens Institute of Technology Master of Engineering in Engineering Management
</div>
</div>
-->
</div>
-->
<div
class=
"banner_navList"
v-if=
"false"
>
<div
class=
"banner_navList"
v-if=
"false"
>
...
...
components/home/projectFeatures.vue
浏览文件 @
df01ff47
...
@@ -27,18 +27,18 @@ export default {
...
@@ -27,18 +27,18 @@ export default {
listData
:
[
listData
:
[
{
{
web_img_uri
:
'https://webapp-pub.ezijing.com/project/park-plus/feature_1.png'
,
web_img_uri
:
'https://webapp-pub.ezijing.com/project/park-plus/feature_1.png'
,
item_desc_tit
:
'
校方直录
'
,
item_desc_tit
:
'
官方可靠
'
,
item_desc_con
:
'
点对点直录<br/>硕士学分国内提前修
'
item_desc_con
:
'
中美教育部双认证的大学<br/>美国帕克大学硕士项目中国中心直招
'
},
},
{
{
web_img_uri
:
'https://webapp-pub.ezijing.com/project/park-plus/feature_2.png'
,
web_img_uri
:
'https://webapp-pub.ezijing.com/project/park-plus/feature_2.png'
,
item_desc_tit
:
'
免标准化考
试'
,
item_desc_tit
:
'
推荐免
试'
,
item_desc_con
:
'
校方考试替代
托福/GRE/GMAT'
item_desc_con
:
'
中方院校推荐,面试录取<br/>免
托福/GRE/GMAT'
},
},
{
{
web_img_uri
:
'https://webapp-pub.ezijing.com/project/park-plus/feature_3.png'
,
web_img_uri
:
'https://webapp-pub.ezijing.com/project/park-plus/feature_3.png'
,
item_desc_tit
:
'
超高性价比留学项目
'
,
item_desc_tit
:
'
高性价比
'
,
item_desc_con
:
'国内、国外
学费不超过18万
人民币'
item_desc_con
:
'国内、国外
总学费不超过18万元
人民币'
}
}
]
]
}
}
...
...
components/home/projectPosition.vue
浏览文件 @
df01ff47
...
@@ -6,7 +6,9 @@
...
@@ -6,7 +6,9 @@
该项目是美国帕克大学硕士项目的特别录取通道。项目通过对学生的综合素质进行全面个性化评估,鼓励学生以增强综合能力替代应试,减少研究生入学考试以及英语考试对学生学习和成长的干扰。
该项目是美国帕克大学硕士项目的特别录取通道。项目通过对学生的综合素质进行全面个性化评估,鼓励学生以增强综合能力替代应试,减少研究生入学考试以及英语考试对学生学习和成长的干扰。
</p>
</p>
<br
/>
<br
/>
<p>
该项目由美国帕克大学硕士项目中国中心(清控紫荆教育)负责招生和运营,详情请见美国帕克大学官网项目说明。
</p>
<p>
该项目由美国帕克大学硕士项目中国中心(清控紫荆教育)负责招生和运营,详情请见美国帕克大学官网项目说明:https://www.park.edu/admissions/international-student-admissions/park-zijing-partnership-program/
</p>
</div>
</div>
</card>
</card>
</div>
</div>
...
...
components/home/schoolIntroduce.vue
浏览文件 @
df01ff47
...
@@ -2,15 +2,18 @@
...
@@ -2,15 +2,18 @@
<div
class=
"service-content max-width-center"
>
<div
class=
"service-content max-width-center"
>
<card
title=
"学校简介"
>
<card
title=
"学校简介"
>
<div
class=
"desc"
>
<div
class=
"desc"
>
<img
src=
"https://webapp-pub.ezijing.com/project/
park-plus
/school_desc.png"
class=
"desc-img"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/
xmn
/school_desc.png"
class=
"desc-img"
/>
<p>
<p>
美国帕克大学成立于1875年,至今已有149年的历史,是一所历史悠久、学科齐全、多元化的综合性大学,帕克大学一直被家长和其他学校评为国内私立大学中的
顶级大学。帕克大学是美国中北部高等教育委员会及中北部学院和大学协会认可的大学,也是中国教育部涉外监管信息网认证的大学。
美国帕克大学成立于1875年,至今已有149年的历史,是一所历史悠久、学科齐全、多元化的综合性大学,帕克大学一直被家长和其他学校评为国内私立大学中的
卓越典范。
<strong>
帕克大学是美国中北部高等教育委员会及中北部学院和大学协会认可的大学,也是中国教育部涉外监管信息网认证的大学。
</strong>
</p>
</p>
<br
/>
<p>
<p>
帕克大学具有很强的国际化传统,为全球学生提供高品质的学习和学术机会,学校有超过633名来自112个不同国家的外国留学生,他们在学校感受到了家的温暖。为了容纳并使留学生更好地适应学校,学校组织了许多有趣的活动供留学生参加,也让美国学生可以与之互动并体验当地文化。
帕克大学具有很强的国际化传统,为全球学生提供高品质的学习和学术机会,学校有超过633名来自112个不同国家的外国留学生,他们在学校感受到了家的温暖。为了容纳并使留学生更好地适应学校,学校组织了许多有趣的活动供留学生参加,也让美国学生可以与之互动并体验当地文化。
</p>
</p>
<br
/>
<p>
<p>
帕克大学致力于培养具有全球化视野的学生,他们对国际关系和国际市场有着深刻理解。在帕克的学习使他们掌握了关键性思维、有效沟通以及终身学习。无论是商科专业,还是体育、生物、图形设计或者教育专业,学生在帕克大学学到的不仅仅是为日后工作做准备的知识和能力,更是如何成为一个关键性思考者、问题解决者以及可以适应全球化的领跑者。
帕克大学致力于培养具有全球化视野的学生,他们对国际关系和国际市场有着深刻理解。在帕克的学习使他们掌握了关键性思维、有效沟通以及终身学习。无论是商科专业,还是体育、生物、图形设计或者教育专业,学生在帕克大学学到的不仅仅是为日后工作做准备的知识和能力,更是如何成为一个关键性思考者、问题解决者以及可以适应全球化的领跑者。
</p>
</p>
</div>
</div>
</card>
</card>
...
...
components/layout/h5/Header.vue
浏览文件 @
df01ff47
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<img
@
click=
"goWebsite"
src=
"https://webapp-pub.ezijing.com/project/park-plus/logo.png"
/>
<img
@
click=
"goWebsite"
src=
"https://webapp-pub.ezijing.com/project/park-plus/logo.png"
/>
<div
class=
"line"
></div>
<div
class=
"line"
></div>
<nuxt-link
to=
"/"
class=
"logo"
>
<nuxt-link
to=
"/"
class=
"logo"
>
<div
class=
"title"
>
美国帕克大学
本升硕
项目
</div>
<div
class=
"title"
>
美国帕克大学
硕士
项目
</div>
<!--
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/marywood_logo.svg"
/>
-->
<!--
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/marywood_logo.svg"
/>
-->
</nuxt-link>
</nuxt-link>
</div>
</div>
...
...
components/layout/pc/Foot.vue
浏览文件 @
df01ff47
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<div
class=
"left-content"
>
<div
class=
"left-content"
>
<div
class=
"logo-title"
>
<div
class=
"logo-title"
>
<img
src=
"https://webapp-pub.ezijing.com/project/park-plus/logo_white.png"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/park-plus/logo_white.png"
/>
<h1>
美国帕克大学
本升硕
项目
</h1>
<h1>
美国帕克大学
硕士
项目
</h1>
</div>
</div>
<div
class=
"bottom"
>
<div
class=
"bottom"
>
...
@@ -35,12 +35,14 @@
...
@@ -35,12 +35,14 @@
</div>
</div>
</div>
</div>
<div
class=
"center-content"
>
<div
class=
"center-content"
>
<div
class=
"contact"
>
美国帕克大学
本升硕
项目
</div>
<div
class=
"contact"
>
美国帕克大学
硕士
项目
</div>
<div
class=
"contact"
>
中国招生与教学中心(紫荆教育)
</div>
<div
class=
"contact"
>
中国招生与教学中心(紫荆教育)
</div>
<div
class=
"bottom"
>
<div
class=
"bottom"
>
<div
class=
"address"
v-html=
"$t('foot.address')"
></div>
<div
class=
"address"
v-html=
"$t('foot.address')"
></div>
<div
class=
"phone"
v-html=
"$t('foot.contact')"
></div>
<div
class=
"phone"
v-html=
"$t('foot.contact')"
></div>
<a
class=
"mail"
href=
"mailto:admission_park@ezijing.com"
>
邮
箱:admission_park@ezijing.com
</a>
<a
class=
"mail"
href=
"mailto:admission_park@ezijing.com"
>
邮
箱:admission_park@ezijing.com
</a>
<!--
<div
class=
"mail"
v-html=
"$t('foot.email')"
></div>
-->
<!--
<div
class=
"mail"
v-html=
"$t('foot.email')"
></div>
-->
</div>
</div>
</div>
</div>
...
@@ -58,19 +60,39 @@
...
@@ -58,19 +60,39 @@
</div>
</div>
<div
class=
"copyright"
style=
"height: 40px; line-height: 40px; color: rgba(153, 153, 153, 1); background: #fff"
>
<div
class=
"copyright"
style=
"height: 40px; line-height: 40px; color: rgba(153, 153, 153, 1); background: #fff"
>
<div
class=
"inner"
style=
"width: 100%; justify-content: center; display: flex"
>
<div
class=
"inner"
style=
"width: 100%; justify-content: center; display: flex"
>
<p
style=
"font-size: 12px"
>
Copyright © 2017 Zijing Education. All rights reserved. 清控紫荆(北京)教育科技股份有限公司
</p>
<p
style=
"font-size: 12px"
>
<a
target=
"_blank"
href=
"https://tsm.miit.gov.cn/dxxzsp/"
style=
"color: rgba(153, 153, 153, 1); text-decoration: none; margin-left: 10px"
>
Copyright © 2017 Zijing Education. All rights reserved. 清控紫荆(北京)教育科技股份有限公司
</p>
<a
target=
"_blank"
href=
"https://tsm.miit.gov.cn/dxxzsp/"
style=
"color: rgba(153, 153, 153, 1); text-decoration: none; margin-left: 10px"
>
<p
style=
"font-size: 12px"
>
京ICP证150431号
</p>
<p
style=
"font-size: 12px"
>
京ICP证150431号
</p>
</a>
</a>
<a
<a
target=
"_blank"
target=
"_blank"
class=
"record"
class=
"record"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802023681"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802023681"
style=
"color: rgba(153, 153, 153, 1); text-decoration: none; align-items: center; display: flex; margin-right: 5px"
>
style=
"
<img
src=
"https://zws-imgs-pub.ezijing.com/e0a0ec47dfdfc1e0797b1d5254021d00.png"
style=
"width: 20px; height: 20px; margin: 0 6px; display: block"
/>
color: rgba(153, 153, 153, 1);
text-decoration: none;
align-items: center;
display: flex;
margin-right: 5px;
"
>
<img
src=
"https://zws-imgs-pub.ezijing.com/e0a0ec47dfdfc1e0797b1d5254021d00.png"
style=
"width: 20px; height: 20px; margin: 0 6px; display: block"
/>
<p
style=
"font-size: 12px"
>
安备 11010802023681号
</p>
<p
style=
"font-size: 12px"
>
安备 11010802023681号
</p>
</a>
</a>
<a
target=
"_blank"
href=
"https://beian.miit.gov.cn/#/Integrated/index"
style=
"color: rgba(153, 153, 153, 1); text-decoration: none"
>
<a
target=
"_blank"
href=
"https://beian.miit.gov.cn/#/Integrated/index"
style=
"color: rgba(153, 153, 153, 1); text-decoration: none"
>
<p
style=
"font-size: 12px"
>
京ICP备15016866号-1
</p>
<p
style=
"font-size: 12px"
>
京ICP备15016866号-1
</p>
</a>
</a>
</div>
</div>
...
...
components/layout/pc/Head.vue
浏览文件 @
df01ff47
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
<img
@
click=
"goWebsite"
src=
"https://webapp-pub.ezijing.com/project/park-plus/logo.png"
/>
<img
@
click=
"goWebsite"
src=
"https://webapp-pub.ezijing.com/project/park-plus/logo.png"
/>
<div
class=
"line"
></div>
<div
class=
"line"
></div>
<nuxt-link
to=
"/"
>
<nuxt-link
to=
"/"
>
<div
class=
"title"
>
美国帕克大学
本升硕
项目
</div>
<div
class=
"title"
>
美国帕克大学
硕士
项目
</div>
</nuxt-link>
</nuxt-link>
<!--
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/marywood_logo.svg"
/>
-->
<!--
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/marywood_logo.svg"
/>
-->
</div>
</div>
...
@@ -67,10 +67,16 @@ export default {
...
@@ -67,10 +67,16 @@ export default {
return
this
.
$store
.
state
.
user
||
{}
return
this
.
$store
.
state
.
user
||
{}
},
},
loginURL
()
{
loginURL
()
{
return
process
.
client
?
`
${
process
.
env
.
loginURL
}
/login/index?redirect_uri=
${
encodeURIComponent
(
location
.
origin
+
this
.
$route
.
fullPath
)}
`
:
''
return
process
.
client
?
`
${
process
.
env
.
loginURL
}
/login/index?redirect_uri=
${
encodeURIComponent
(
location
.
origin
+
this
.
$route
.
fullPath
)}
`
:
''
},
},
registerURL
()
{
registerURL
()
{
return
process
.
client
?
`
${
process
.
env
.
loginURL
}
/register?redirect_uri=
${
encodeURIComponent
(
location
.
origin
+
this
.
$route
.
fullPath
)}
`
:
''
return
process
.
client
?
`
${
process
.
env
.
loginURL
}
/register?redirect_uri=
${
encodeURIComponent
(
location
.
origin
+
this
.
$route
.
fullPath
)}
`
:
''
}
}
}
}
}
}
...
...
components/rightAside.vue
浏览文件 @
df01ff47
...
@@ -16,7 +16,11 @@
...
@@ -16,7 +16,11 @@
</li>
-->
</li>
-->
<div
class=
"line"
></div>
<div
class=
"line"
></div>
<li
:class=
"
{ wx: true, active: tabBtnActive
&&
tabBtnTarget === 'wx' }" @mouseenter="handleMsOver('wx')" @mouseleave="handleMsOut">
<li
:class=
"
{ wx: true, active: tabBtnActive
&&
tabBtnTarget === 'wx' }"
@mouseenter="handleMsOver('wx')"
@mouseleave="handleMsOut"
>
<!--
<p>
{{
$t
(
'aside.follow'
)
}}
</p>
-->
<!--
<p>
{{
$t
(
'aside.follow'
)
}}
</p>
-->
</li>
</li>
<div
class=
"line"
></div>
<div
class=
"line"
></div>
...
@@ -25,8 +29,18 @@
...
@@ -25,8 +29,18 @@
<!--
<p>
^
</p>
-->
<!--
<p>
^
</p>
-->
</li>
</li>
</ul>
</ul>
<transition
name=
"custom-classes-transition"
enter-active-class=
"animated tada"
leave-active-class=
"animated bounceOutRight"
>
<transition
<div
id=
"show-enroll"
v-show=
"tabBtnActive"
class=
"tab_cont"
@
mouseover=
"handleMsOver('')"
@
mouseout=
"handleMsOut"
>
name=
"custom-classes-transition"
enter-active-class=
"animated tada"
leave-active-class=
"animated bounceOutRight"
>
<div
id=
"show-enroll"
v-show=
"tabBtnActive"
class=
"tab_cont"
@
mouseover=
"handleMsOver('')"
@
mouseout=
"handleMsOut"
>
<div
class=
"enroll_cont"
id=
"show-enroll-content"
v-show=
"tabBtnTarget === 'enroll'"
>
<div
class=
"enroll_cont"
id=
"show-enroll-content"
v-show=
"tabBtnTarget === 'enroll'"
>
<h5>
{{
$t
(
'aside.apply1'
)
}}
</h5>
<h5>
{{
$t
(
'aside.apply1'
)
}}
</h5>
<p><el-input
v-model=
"formInfo.name"
:placeholder=
"$t('aside.name')"
size=
"small"
></el-input></p>
<p><el-input
v-model=
"formInfo.name"
:placeholder=
"$t('aside.name')"
size=
"small"
></el-input></p>
...
@@ -48,7 +62,9 @@
...
@@ -48,7 +62,9 @@
</p>
</p>
<p
class=
"sendcode"
>
<p
class=
"sendcode"
>
<el-input
v-model=
"sendCode"
:placeholder=
"$t('aside.code')"
size=
"small"
></el-input
<el-input
v-model=
"sendCode"
:placeholder=
"$t('aside.code')"
size=
"small"
></el-input
><el-button
class=
"btn"
:disabled=
"isBtnDisabled"
id=
"checkedCode"
@
click=
"getSendCode"
>
{{
$t
(
'aside.codeBtn'
)
}}
</el-button>
><el-button
class=
"btn"
:disabled=
"isBtnDisabled"
id=
"checkedCode"
@
click=
"getSendCode"
>
{{
$t
(
'aside.codeBtn'
)
}}
</el-button>
</p>
</p>
<p>
<p>
<el-button
style=
"width: 100%"
@
click=
"submitEnroll"
>
{{
$t
(
'aside.formBtn'
)
}}
</el-button>
<el-button
style=
"width: 100%"
@
click=
"submitEnroll"
>
{{
$t
(
'aside.formBtn'
)
}}
</el-button>
...
@@ -87,7 +103,7 @@ export default {
...
@@ -87,7 +103,7 @@ export default {
{
label
:
'中国未来金融领袖计划'
,
value
:
'1007'
},
{
label
:
'中国未来金融领袖计划'
,
value
:
'1007'
},
{
label
:
'国际硕士'
,
value
:
'1016'
},
{
label
:
'国际硕士'
,
value
:
'1016'
},
{
label
:
'金融学硕士保研项目'
,
value
:
'1018'
},
{
label
:
'金融学硕士保研项目'
,
value
:
'1018'
},
{
label
:
'美国帕克大学
本升硕
项目'
,
value
:
'1030'
}
{
label
:
'美国帕克大学
硕士
项目'
,
value
:
'1030'
}
]
]
}
}
},
},
...
...
langs/zh-CN.js
浏览文件 @
df01ff47
...
@@ -51,7 +51,7 @@ export default {
...
@@ -51,7 +51,7 @@ export default {
// 首页
// 首页
home
:
{
home
:
{
project
:
{
project
:
{
title
:
'项目
优势
'
,
title
:
'项目
亮点
'
,
h5
:
{
h5
:
{
itemT1
:
'百年历史<br />美国大学'
,
itemT1
:
'百年历史<br />美国大学'
,
itemT2
:
'高排名<br />美国大学'
,
itemT2
:
'高排名<br />美国大学'
,
...
...
modules/letter/index.vue
浏览文件 @
df01ff47
...
@@ -3,18 +3,33 @@
...
@@ -3,18 +3,33 @@
<header
class=
"header"
>
<header
class=
"header"
>
<div
class=
"inner"
>
<div
class=
"inner"
>
<div
class=
"logo"
>
<div
class=
"logo"
>
<router-link
to=
"/"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/ezijing-logo.png"
/></router-link>
<router-link
to=
"/"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/ezijing-logo.png"
/></router-link>
</div>
</div>
</div>
</div>
</header>
</header>
<nav
class=
"nav"
><h1
class=
"title"
>
美国帕克大学
本升硕
项目推荐信
</h1></nav>
<nav
class=
"nav"
><h1
class=
"title"
>
美国帕克大学
硕士
项目推荐信
</h1></nav>
<section
class=
"content"
>
<section
class=
"content"
>
<el-form
:model=
"ruleForm"
:rules=
"rules"
ref=
"form"
label-width=
"100px"
:label-position=
"labelPosition"
@
submit
.
native
.
prevent
style=
"max-width: 680px"
>
<el-form
:model=
"ruleForm"
:rules=
"rules"
ref=
"form"
label-width=
"100px"
:label-position=
"labelPosition"
@
submit
.
native
.
prevent
style=
"max-width: 680px"
>
<el-form-item
label=
"姓名"
prop=
"provider_name"
>
<el-form-item
label=
"姓名"
prop=
"provider_name"
>
<el-input
v-model=
"ruleForm.provider_name"
@
blur=
"onBlur('provider_name')"
></el-input>
<el-input
v-model=
"ruleForm.provider_name"
@
blur=
"onBlur('provider_name')"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"推荐信内容"
prop=
"letter_content"
>
<el-form-item
label=
"推荐信内容"
prop=
"letter_content"
>
<el-input
type=
"textarea"
:autosize=
"
{ minRows: 6 }" v-model="ruleForm.letter_content" @blur="onBlur('letter_content')">
</el-input>
<el-input
type=
"textarea"
:autosize=
"
{ minRows: 6 }"
v-model="ruleForm.letter_content"
@blur="onBlur('letter_content')"
>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"手机号"
prop=
"provider_phone_number"
>
<el-form-item
label=
"手机号"
prop=
"provider_phone_number"
>
<el-input
v-model=
"ruleForm.provider_phone_number"
></el-input>
<el-input
v-model=
"ruleForm.provider_phone_number"
></el-input>
...
...
modules/my/application/components/qrcodePay.vue
浏览文件 @
df01ff47
...
@@ -5,9 +5,11 @@
...
@@ -5,9 +5,11 @@
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
</div>
</div>
<h1>
欢迎您
</h1>
<h1>
欢迎您
</h1>
<p
class=
"t1"
>
申请美国帕克大学本升硕项目,本项目的申请费为
<span>
700
</span>
元,请扫描二维码以完成报名。
</p>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,本项目的申请费为
<span>
700
</span>
元,请扫描二维码以完成报名。
</p>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i>
</div>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i></div>
<div
class=
"qrcode"
v-else
>
<div
class=
"qrcode"
v-else
>
<qrcode-vue
:value=
"qrcodeValue"
size=
"100"
></qrcode-vue>
<qrcode-vue
:value=
"qrcodeValue"
size=
"100"
></qrcode-vue>
<span
@
click=
"getOrder"
><i
class=
"el-icon-refresh"
style=
"font-size: 20px"
title=
"刷新"
></i></span>
<span
@
click=
"getOrder"
><i
class=
"el-icon-refresh"
style=
"font-size: 20px"
title=
"刷新"
></i></span>
...
...
modules/my/application/form/declare.js
浏览文件 @
df01ff47
...
@@ -27,7 +27,7 @@ export default function (_this) {
...
@@ -27,7 +27,7 @@ export default function (_this) {
values
:
[{
label
:
'同意'
,
value
:
1
}],
values
:
[{
label
:
'同意'
,
value
:
1
}],
model
:
'isAgree'
,
model
:
'isAgree'
,
rules
:
[{
required
:
true
,
message
:
'请阅读协议'
,
trigger
:
'change'
}],
rules
:
[{
required
:
true
,
message
:
'请阅读协议'
,
trigger
:
'change'
}],
prepend
:
`<p>1、本人知晓此申请表及所附文件将作为申请美国帕克大学
本升硕
项目面试和背景评估的参考依据,一旦成功录取,有关资料将作为学生信息存档。</p>
prepend
:
`<p>1、本人知晓此申请表及所附文件将作为申请美国帕克大学
硕士
项目面试和背景评估的参考依据,一旦成功录取,有关资料将作为学生信息存档。</p>
<p>2、本人声明所填资料正确无误,知晓任何不真实的信息或不诚信的行为,均会影响申请结果,已取得的成绩和资格会被取消。我理解并同意所有报名材料归紫荆教育所有,无论考生录取与否均不退回。我授权紫荆教育使用报名表中的信息查询本人学习和工作记录。</p>`
<p>2、本人声明所填资料正确无误,知晓任何不真实的信息或不诚信的行为,均会影响申请结果,已取得的成绩和资格会被取消。我理解并同意所有报名材料归紫荆教育所有,无论考生录取与否均不退回。我授权紫荆教育使用报名表中的信息查询本人学习和工作记录。</p>`
}
}
]
]
...
...
modules/my/application/form/info/answer.js
浏览文件 @
df01ff47
...
@@ -17,7 +17,7 @@ export default function (_this) {
...
@@ -17,7 +17,7 @@ export default function (_this) {
const
[
first
=
{},
second
=
{}]
=
answers
const
[
first
=
{},
second
=
{}]
=
answers
return
{
return
{
qid1
:
first
.
qid
||
'1'
,
qid1
:
first
.
qid
||
'1'
,
question1
:
'您为什么要申请美国帕克大学
本升硕
项目?'
,
question1
:
'您为什么要申请美国帕克大学
硕士
项目?'
,
answer1
:
first
.
answer
,
answer1
:
first
.
answer
,
qid2
:
second
.
qid
||
'2'
,
qid2
:
second
.
qid
||
'2'
,
question2
:
'您的短期和长期职业发展目标是什么?您打算如何达成此愿景?'
,
question2
:
'您的短期和长期职业发展目标是什么?您打算如何达成此愿景?'
,
...
@@ -39,7 +39,7 @@ export default function (_this) {
...
@@ -39,7 +39,7 @@ export default function (_this) {
items
:
[
items
:
[
{
{
type
:
'v-input'
,
type
:
'v-input'
,
label
:
'您为什么要申请美国帕克大学
本升硕
项目?(60字以上,1000字以内)'
,
label
:
'您为什么要申请美国帕克大学
硕士
项目?(60字以上,1000字以内)'
,
model
:
'answer1'
,
model
:
'answer1'
,
attrs
:
{
type
:
'textarea'
,
rows
:
'8'
,
maxlength
:
'1000'
,
style
:
'width:100%'
},
attrs
:
{
type
:
'textarea'
,
rows
:
'8'
,
maxlength
:
'1000'
,
style
:
'width:100%'
},
rules
:
[
rules
:
[
...
...
modules/my/interview/components/qrcodePay.vue
浏览文件 @
df01ff47
...
@@ -5,9 +5,11 @@
...
@@ -5,9 +5,11 @@
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
</div>
</div>
<h1>
欢迎您
</h1>
<h1>
欢迎您
</h1>
<p
class=
"t1"
>
申请美国帕克大学本升硕项目,本项目的申请费为
<span>
700
</span>
元,请扫描二维码以完成报名。
</p>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,本项目的申请费为
<span>
700
</span>
元,请扫描二维码以完成报名。
</p>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i>
</div>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i></div>
<div
class=
"qrcode"
v-else
>
<div
class=
"qrcode"
v-else
>
<qrcode-vue
:value=
"qrcodeValue"
size=
"100"
></qrcode-vue>
<qrcode-vue
:value=
"qrcodeValue"
size=
"100"
></qrcode-vue>
<span
@
click=
"getOrder"
><i
class=
"el-icon-refresh"
style=
"font-size: 20px"
title=
"刷新"
></i></span>
<span
@
click=
"getOrder"
><i
class=
"el-icon-refresh"
style=
"font-size: 20px"
title=
"刷新"
></i></span>
...
...
modules/my/interview/form/index.js
浏览文件 @
df01ff47
...
@@ -8,12 +8,14 @@ import tjx from './tjx'
...
@@ -8,12 +8,14 @@ import tjx from './tjx'
import
grcs
from
'./grcs'
import
grcs
from
'./grcs'
import
byzs
from
'./byzs'
import
byzs
from
'./byzs'
import
form
from
'./form'
import
form
from
'./form'
import
zwjl
from
'./zwjl'
export
default
function
(
_this
)
{
export
default
function
(
_this
)
{
return
{
return
{
id
:
'interview'
,
id
:
'interview'
,
title
:
'申请面试'
,
title
:
'申请面试'
,
children
:
[
children
:
[
zwjl
(
_this
),
ywjl
(
_this
),
ywjl
(
_this
),
cjd
(
_this
),
cjd
(
_this
),
// yynl(_this),
// yynl(_this),
...
...
modules/my/interview/form/zwjl.js
0 → 100644
浏览文件 @
df01ff47
export
default
function
(
_this
)
{
return
{
required
:
true
,
id
:
'interview_zwjl'
,
title
:
'中文简历'
,
get
:
{
callback
(
data
)
{
const
{
attachments
=
[]
}
=
_this
.
detail
.
material
const
RESUME_CN
=
attachments
.
filter
(
item
=>
item
.
file_type_id
===
'RESUME_CN'
)
return
{
RESUME_CN
}
}
},
form
:
{
hasSubmit
:
false
,
items
:
[
{
required
:
true
,
type
:
'v-upload'
,
model
:
'RESUME_CN'
,
attrs
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/put`
,
deleteAction
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/delete`
,
data
:
{
file_type
:
'RESUME_CN'
}
},
append
:
`
<p>请下载填写中文简历模板后上传 [<a href="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/xmn/%E4%B8%AD%E6%96%87%E7%AE%80%E5%8E%86%E6%A8%A1%E6%9D%BF.doc" target="_blank" download="中文简历模板">下载模板</a>]</p>
<p>请将中文简历填写完存为"pdf"格式上传,文件小于10MB。</p>`
}
]
}
}
}
modules/my/interview/index.vue
浏览文件 @
df01ff47
...
@@ -9,7 +9,8 @@
...
@@ -9,7 +9,8 @@
@
success=
"handleSuccess"
@
success=
"handleSuccess"
@
error=
"handleError"
@
error=
"handleError"
@
back=
"$router.push('/my/account')"
@
back=
"$router.push('/my/account')"
v-if=
"detail"
>
v-if=
"detail"
>
<template
#
aside-append
>
<template
#
aside-append
>
<div
class=
"aside-payment"
><a
href=
"https://accounts.ezijing.com/payment"
target=
"_blank"
>
查看缴费记录
</a></div>
<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-logout"
@
click=
"$store.dispatch('logout')"
><span>
退出登录
</span></div>
...
@@ -20,7 +21,13 @@
...
@@ -20,7 +21,13 @@
</
template
>
</
template
>
</vue-form>
</vue-form>
<app-complete
:type=
"1"
v-model=
"completeVisible"
></app-complete>
<app-complete
:type=
"1"
v-model=
"completeVisible"
></app-complete>
<el-dialog
title=
"您的申请资料已提交成功"
:visible
.
sync=
"dialogVisible"
:center=
"true"
:close-on-click-modal=
"false"
width=
"348px"
>
<el-dialog
title=
"您的申请资料已提交成功"
:visible
.
sync=
"dialogVisible"
:center=
"true"
:close-on-click-modal=
"false"
width=
"348px"
>
<div
class=
"dialog-tips"
>
<div
class=
"dialog-tips"
>
<div
class=
"icon"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/icon_success.png"
/></div>
<div
class=
"icon"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/icon_success.png"
/></div>
</div>
</div>
...
@@ -45,7 +52,7 @@ export default {
...
@@ -45,7 +52,7 @@ export default {
const
menus
=
getMenu
(
this
)
const
menus
=
getMenu
(
this
)
return
{
return
{
menus
:
[
menus
],
menus
:
[
menus
],
currentActive
:
'interview_
y
wjl'
,
currentActive
:
'interview_
z
wjl'
,
completeVisible
:
false
,
completeVisible
:
false
,
dialogVisible
:
false
,
dialogVisible
:
false
,
detail
:
null
detail
:
null
...
@@ -56,7 +63,7 @@ export default {
...
@@ -56,7 +63,7 @@ export default {
immediate
:
true
,
immediate
:
true
,
handler
(
route
)
{
handler
(
route
)
{
const
{
query
=
{}
}
=
route
const
{
query
=
{}
}
=
route
this
.
currentActive
=
query
.
active
||
'interview_
y
wjl'
this
.
currentActive
=
query
.
active
||
'interview_
z
wjl'
}
}
},
},
showSubmittedDialog
(
value
)
{
showSubmittedDialog
(
value
)
{
...
...
modules/my/review/components/qrcodePay.vue
浏览文件 @
df01ff47
...
@@ -5,9 +5,11 @@
...
@@ -5,9 +5,11 @@
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/application/images/my_pay_01.png"
/>
</div>
</div>
<h1>
欢迎您
</h1>
<h1>
欢迎您
</h1>
<p
class=
"t1"
>
申请美国帕克大学本升硕项目,需缴纳留位费
<span>
10000
</span>
元,请扫描二维码以完成缴费。
</p>
<p
class=
"t1"
>
申请美国帕克大学硕士项目,需缴纳留位费
<span>
10000
</span>
元,请扫描二维码以完成缴费。
</p>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i>
</div>
</div>
<div
class=
"qrcode-error"
v-if=
"qrcodeError"
>
生成二维码失败请刷新
<i
class=
"el-icon-refresh-left"
@
click=
"getOrder"
title=
"刷新"
></i></div>
<div
class=
"qrcode"
v-else
>
<div
class=
"qrcode"
v-else
>
<qrcode-vue
:value=
"qrcodeValue"
size=
"100"
></qrcode-vue>
<qrcode-vue
:value=
"qrcodeValue"
size=
"100"
></qrcode-vue>
<span
@
click=
"getOrder"
><i
class=
"el-icon-refresh"
style=
"font-size: 20px"
title=
"刷新"
></i></span>
<span
@
click=
"getOrder"
><i
class=
"el-icon-refresh"
style=
"font-size: 20px"
title=
"刷新"
></i></span>
...
...
modules/my/welcome/indexPay.vue
浏览文件 @
df01ff47
...
@@ -4,12 +4,19 @@
...
@@ -4,12 +4,19 @@
<qrcode-pay
@
update=
"handleUpdateOrder"
v-else
></qrcode-pay>
<qrcode-pay
@
update=
"handleUpdateOrder"
v-else
></qrcode-pay>
<div
class=
"pay-ft"
>
<div
class=
"pay-ft"
>
<p
class=
"t2"
>
<p
class=
"t2"
>
欢迎您申请美国帕克大学
本升硕
项目
<br
/>
欢迎您申请美国帕克大学
硕士
项目
<br
/>
申请流程:①支付报名费②填写报名资料并提供相关材料(身份证扫描件、毕业证书扫描件、2寸照片)③参加面试④获得录取⑤缴纳学费并签署入学协议⑥入学学习(办
申请流程:①支付报名费②填写报名资料并提供相关材料(身份证扫描件、毕业证书扫描件、2寸照片)③参加面试④获得录取⑤缴纳学费并签署入学协议⑥入学学习(办
理入学手续:提供成绩单、学籍注册等)
<br
/>
申请费提交后不予退还
理入学手续:提供成绩单、学籍注册等)
<br
/>
申请费提交后不予退还
</p>
</p>
</div>
</div>
<el-dialog
title=
"报名费缴费成功"
:visible
.
sync=
"dialogVisible"
:center=
"true"
:show-close=
"false"
:close-on-click-modal=
"false"
width=
"400px"
>
<el-dialog
title=
"报名费缴费成功"
:visible
.
sync=
"dialogVisible"
:center=
"true"
:show-close=
"false"
:close-on-click-modal=
"false"
width=
"400px"
>
<div
class=
"dialog-pay"
>
<div
class=
"dialog-pay"
>
<p>
请按照要求填写报名所需材料,完成“提交报名申请”及“申请面试”
</p>
<p>
请按照要求填写报名所需材料,完成“提交报名申请”及“申请面试”
</p>
<div
class=
"icon"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/icon_success.png"
/></div>
<div
class=
"icon"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/icon_success.png"
/></div>
...
...
modules/my/welcome/indexWelcome.vue
浏览文件 @
df01ff47
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
</div>
</div>
<h1>
欢迎您
</h1>
<h1>
欢迎您
</h1>
<p
class=
"t1"
>
<p
class=
"t1"
>
申请美国帕克大学
本升硕
项目,请在填写以下内容并
<br
/>
申请美国帕克大学
硕士
项目,请在填写以下内容并
<br
/>
提交报名申请后,扫码支付本项目的申请费共计
<span>
700
</span>
元。
提交报名申请后,扫码支付本项目的申请费共计
<span>
700
</span>
元。
</p>
</p>
</div>
</div>
...
...
nuxt.config.js
浏览文件 @
df01ff47
...
@@ -17,7 +17,7 @@ export default {
...
@@ -17,7 +17,7 @@ export default {
}),
}),
// Global page headers: https://go.nuxtjs.dev/config-head
// Global page headers: https://go.nuxtjs.dev/config-head
head
:
{
head
:
{
title
:
'美国帕克大学
本升硕
项目'
,
title
:
'美国帕克大学
硕士
项目'
,
htmlAttrs
:
{
htmlAttrs
:
{
lang
:
'en'
lang
:
'en'
},
},
...
...
pages/about/school.vue
浏览文件 @
df01ff47
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
</div>
</div>
</section>
</section>
<section
class=
"section"
>
<section
class=
"section"
>
<h2
class=
"title"
>
项目
特点
</h2>
<h2
class=
"title"
>
项目
优势
</h2>
<div
class=
"q-list"
>
<div
class=
"q-list"
>
<div
class=
"q-list_title"
>
■ 推荐免试(免托福/GRE/GMAT)
</div>
<div
class=
"q-list_title"
>
■ 推荐免试(免托福/GRE/GMAT)
</div>
<div
class=
"q-list_content"
>
<div
class=
"q-list_content"
>
...
@@ -33,13 +33,18 @@
...
@@ -33,13 +33,18 @@
<div
class=
"project-target__content"
>
<div
class=
"project-target__content"
>
<h2
class=
"title"
>
培养目标
</h2>
<h2
class=
"title"
>
培养目标
</h2>
<div
class=
"info"
>
<div
class=
"info"
>
<p><b>
工商管理 (Business Administration)
</b></p>
<p>
在读本科四年级或者具有本科学历学位学生
</p>
<p>
工商管理专业主要培养学生掌握现代企业管理理论、方法和技能,具备解决企业实际问题的能力,以适应现代商业环境的需求。帕克大学工商管理专业硕士毕业生可以在各类企事业单位、金融机构、政府部门等多个领域与制造业、金融业、零售业、咨询服务业等多个行业利用所学的管理知识和技能,参与组织的运营和管理。
</p>
</div>
</div>
</div>
</div>
</section>
</section>
<section
class=
"section"
>
<h2
class=
"title"
>
招生对象
</h2>
<ul
class=
"project-content-list"
>
<li>
身心健康,品学端正。
</li>
<li>
学校推荐,面试录取。
</li>
<li>
英语:面试合格,可免托福和GRE/GMAT。
</li>
</ul>
</section>
<!-- 申请要求 -->
<!-- 申请要求 -->
<section
class=
"section"
>
<section
class=
"section"
>
<h2
class=
"title"
>
录取条件
</h2>
<h2
class=
"title"
>
录取条件
</h2>
...
@@ -59,7 +64,7 @@
...
@@ -59,7 +64,7 @@
</div>
</div>
</section>
</section>
<!-- 学制安排 -->
<!-- 学制安排 -->
<section
class=
"section"
>
<section
class=
"section"
v-if=
"false"
>
<h2
class=
"title"
>
学制安排
</h2>
<h2
class=
"title"
>
学制安排
</h2>
<div
class=
"schedule-list"
>
<div
class=
"schedule-list"
>
<div
class=
"schedule-item"
v-for=
"(item, index) in scheduleList"
:key=
"index"
>
<div
class=
"schedule-item"
v-for=
"(item, index) in scheduleList"
:key=
"index"
>
...
@@ -91,7 +96,7 @@
...
@@ -91,7 +96,7 @@
v-if=
"isMobile"
v-if=
"isMobile"
/>
/>
<img
<img
src=
"https://webapp-pub.ezijing.com/project/
park
-plus/project_honor.png"
src=
"https://webapp-pub.ezijing.com/project/
xmn
-plus/project_honor.png"
style=
"width: 100%; min-width: 1200px"
style=
"width: 100%; min-width: 1200px"
v-else
v-else
/>
/>
...
...
pages/enroll/process.vue
浏览文件 @
df01ff47
...
@@ -16,10 +16,10 @@
...
@@ -16,10 +16,10 @@
</p>
</p>
<!--
<p>
另请提供纸质材料:
</p>
-->
<!--
<p>
另请提供纸质材料:
</p>
-->
<ul>
<ul>
<li>
➢ 中
/
英文简历
</li>
<li>
➢ 中英文简历
</li>
<li>
➢ 身份证扫描件
</li>
<li>
➢ 身份证扫描件
</li>
<li>
➢ 中英文成绩单(在读生截止到上学期末)
</li>
<li>
➢ 中英文成绩单(在读生截止到上学期末)
</li>
<li>
➢ 本
(专)科学历学位证明/本(专)科在读证明(中、
英文)
</li>
<li>
➢ 本
科学历学位证明/本科在读证明(中
英文)
</li>
<li>
➢ 个人荣誉证书和获奖经历扫描件、推荐信等(如有)
</li>
<li>
➢ 个人荣誉证书和获奖经历扫描件、推荐信等(如有)
</li>
<!--
<li>
➢ 本科学历学位证明/本科在读证明(中、英文)
</li>
<!--
<li>
➢ 本科学历学位证明/本科在读证明(中、英文)
</li>
<li>
➢ 英文本科成绩单(在读生截止到上学期末)
</li>
<li>
➢ 英文本科成绩单(在读生截止到上学期末)
</li>
...
...
pages/project-intro/introduce.vue
浏览文件 @
df01ff47
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<img
src=
"https://webapp-pub.ezijing.com/project/park-plus/project-intro_banner.png"
class=
"banner"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/park-plus/project-intro_banner.png"
class=
"banner"
/>
<div
class=
"part_content"
>
<div
class=
"part_content"
>
<div
class=
"part_item"
>
<div
class=
"part_item"
>
美国帕克大学
本升硕项目是清控紫荆教育联合美国多所知名院校推出的国际硕士保研项目之一。清控紫荆教育为美国帕克大学本升硕
项目官方授权中国招生与教学中心。
美国帕克大学
硕士项目是清控紫荆教育联合美国多所知名院校推出的国际硕士保研项目之一。清控紫荆教育为美国帕克大学硕士
项目官方授权中国招生与教学中心。
</div>
</div>
<div
class=
"part_item"
>
<div
class=
"part_item"
>
国际硕士保研项目是针对在读本科生或往届生提供的研究生学历晋升通道。第一个“1”是指大三或大四的本科生在被美国大学硕士项目有条件录取后,第1年在国内就读(已工作人士可以边工作边就读)。国内就读课程主要为英语强化课程及部分硕士学分课,由美国大学认可的国内大学或者有实力的教育机构实施录取和教学,一般用时12-15个月。第二个“1”是指在完成第一个“1”的要求之后,获得美国大学的无条件录取,本科毕业当年可直接衔接赴美留学(已工作的人士第二年也需赴美全日制学习),完成剩余学分,毕业后获得美方硕士学位,回国后可向中国(教育部)留学服务中心申请认证为硕士研究生学历。
国际硕士保研项目是针对在读本科生或往届生提供的研究生学历晋升通道。第一个“1”是指大三或大四的本科生在被美国大学硕士项目有条件录取后,第1年在国内就读(已工作人士可以边工作边就读)。国内就读课程主要为英语强化课程及部分硕士学分课,由美国大学认可的国内大学或者有实力的教育机构实施录取和教学,一般用时12-15个月。第二个“1”是指在完成第一个“1”的要求之后,获得美国大学的无条件录取,本科毕业当年可直接衔接赴美留学(已工作的人士第二年也需赴美全日制学习),完成剩余学分,毕业后获得美方硕士学位,回国后可向中国(教育部)留学服务中心申请认证为硕士研究生学历。
...
...
pages/school/school.vue
浏览文件 @
df01ff47
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论