Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
21047a4a
提交
21047a4a
authored
1月 11, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
文字调整
上级
d2f1d68e
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
655 行增加
和
154 行删除
+655
-154
projectFeatures.vue
components/home/projectFeatures.vue
+10
-20
tab.vue
components/tab.vue
+75
-0
zh-CN.js
langs/zh-CN.js
+7
-2
apply.vue
pages/enroll/apply.vue
+252
-26
TabContent.vue
pages/enroll/components/TabContent.vue
+61
-0
introduce.vue
pages/project-intro/introduce.vue
+1
-1
question.vue
pages/question/question.vue
+93
-95
returnPolicy.vue
pages/returnPolicy/returnPolicy.vue
+152
-6
school1.vue
pages/school/school1.vue
+3
-3
school2.vue
pages/school/school2.vue
+1
-1
没有找到文件。
components/home/projectFeatures.vue
浏览文件 @
21047a4a
...
...
@@ -47,27 +47,17 @@ export default {
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/img32.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/img31.png'
,
text
:
this
.
$store
.
state
.
isMobile
?
this
.
$t
(
'home.project.h5.itemT1'
)
:
this
.
$t
(
'home.project.pc.itemT7'
)
},
{
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/img42.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/img41.png'
,
text
:
this
.
$store
.
state
.
isMobile
?
this
.
$t
(
'home.project.h5.itemT2'
)
:
this
.
$t
(
'home.project.pc.itemT8'
)
},
{
icon
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/img52.png'
,
iconActive
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/img51.png'
,
text
:
this
.
$store
.
state
.
isMobile
?
this
.
$t
(
'home.project.h5.itemT3'
)
:
this
.
$t
(
'home.project.pc.itemT9'
)
}
// {
// icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon2.png',
// iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon2_a.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT2') : this.$t('home.project.pc.itemT2')
// },
// {
// icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon3.png',
// iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon3_a.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT3') : this.$t('home.project.pc.itemT3')
// },
// {
// icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon4.png',
// iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon4_a.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT4') : this.$t('home.project.pc.itemT4')
// },
// {
// icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon5.png',
// iconActive: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/mary_features_icon5_a.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT5') : this.$t('home.project.pc.itemT5')
// }
]
}
},
...
...
components/tab.vue
0 → 100644
浏览文件 @
21047a4a
<
template
>
<ul
class=
"tab-content"
>
<li
v-for=
"(item, index) in data"
:class=
"indexActive === index && 'active'"
:key=
"index"
@
click=
"tabChanges(item, index)"
v-html=
"item.name"
></li>
</ul>
</
template
>
<
script
>
export
default
{
props
:
{
data
:
{
type
:
Array
},
defaultActive
:
{
type
:
Number
,
default
:
0
}
},
data
()
{
return
{
indexActive
:
0
}
},
mounted
()
{
this
.
indexActive
=
this
.
defaultActive
},
methods
:
{
tabChanges
(
item
,
index
)
{
if
(
item
.
disabled
)
{
return
}
this
.
indexActive
=
index
this
.
$emit
(
'tabChangeIndex'
,
index
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.tab-content
{
width
:
180px
;
height
:
fit-content
;
background
:
#fff
;
padding-top
:
35px
;
padding-bottom
:
43px
;
li
{
position
:
relative
;
width
:
100%
;
font-size
:
22px
;
line-height
:
40px
;
text-align
:
center
;
color
:
#777777
;
margin-bottom
:
60px
;
cursor
:
pointer
;
&
:last-child
{
margin
:
0
;
}
&
.active
{
color
:
rgba
(
170
,
25
,
65
,
1
);
&
:
:
after
{
content
:
''
;
width
:
8px
;
height
:
40px
;
background
:
rgba
(
170
,
25
,
65
,
1
);
position
:
absolute
;
top
:
0
;
left
:
0
;
}
}
}
}
</
style
>
langs/zh-CN.js
浏览文件 @
21047a4a
...
...
@@ -66,7 +66,9 @@ export default {
itemT5
:
'16个月精炼课程'
,
itemT5
:
'中国教育部认证大学<br/>安全可靠'
,
itemT6
:
'回国可留服认证<br />享受学生福利'
,
itemT7
:
'顶配中外师资<br />权威专家教学'
itemT7
:
'顶配中外师资<br />权威专家教学'
,
itemT8
:
'线上线下结合,<br/>授课方式灵活'
,
itemT9
:
'中外联合教研,<br/>官方授权中国教学中心学'
}
},
ranking
:
{
...
...
@@ -229,7 +231,10 @@ export default {
con2Txt
:
`证劵、基金、银行、财富管理等相关行业人士<br />
金融相关行业有丰富工作经验的专业人士<br />
所从事的金融业务具有国际化需求的人士<br />
其他对本项目有兴趣并自身优异者`
其他对本项目有兴趣并自身优异者`
,
tabText1
:
'报名条件'
,
tabText2
:
'入学条件'
,
tabText3
:
'毕业条件'
},
// 费用资助
cost
:
{
...
...
pages/enroll/apply.vue
浏览文件 @
21047a4a
<
template
>
<app-frame
:data=
"frameParams"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/apply_banner.png"
alt=
""
/>
<img
<
!--
<
img
style=
"padding-left:101px;padding-right:49px;margin-top:65px;padding-bottom:109px"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/apply_con.png"
alt=
""
/>
/>
-->
<div
class=
"content-mian"
>
<tab-content
@
tabChange=
"tabChange"
></tab-content>
<div
class=
"content-mod1"
v-if=
"showIndex === 0"
>
<!--
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/kelley-h5/project-mod1-banner.png"
class=
"main-banner"
/>
-->
<div
class=
"content-txt"
>
<div
class=
"content_tit"
>
本科在读或者本科毕业学生
<br
/>
需为国家承认的本科学历,包括全日制本科、专升本、成人自考本科
</div>
</div>
</div>
<div
class=
"content-mod2"
v-if=
"showIndex === 1"
>
<div
class=
"content-txt"
>
<div
class=
"p"
>
提交申请材料并通过审核后,进入到面试环节。通过清控紫荆教育中英文面试后将获得条件录取资格或候补资格
</div>
<div
class=
"descList"
>
<div
class=
"list_tit"
>
报名条件
</div>
<div
class=
"list_desc"
v-for=
"(item, index) in descList"
:key=
"index"
>
{{
item
.
desc
}}
</div>
</div>
<div
class=
"admissionList"
>
<div
class=
"list_tit"
>
录取条件
</div>
<div
class=
"admission_desc"
>
<div
class=
"admission_part"
>
<div
class=
"part_tit"
>
纽约州立大学石溪分校 金融硕士
</div>
<div
class=
"part_desc"
>
<div
class=
"item_desc"
>
本科GPA成绩≥3.0;
</div>
<div
class=
"item_desc"
>
大学英语六级≥450分
</div>
<div
class=
"item_desc"
>
通过初审资料审核(详见申请材料)
</div>
<div
class=
"item_desc"
>
通过项目中英文面试
</div>
</div>
</div>
<div
class=
"admission_part"
>
<div
class=
"part_tit"
>
斯蒂文斯理工学院学院
<br
/>
工程管理硕士 商业分析方向
</div>
<div
class=
"part_desc"
>
<div
class=
"item_desc"
>
本科GPA成绩≥3.0;
</div>
<div
class=
"item_desc"
>
通过初审资料审核(详见申请材料)
</div>
<div
class=
"item_desc"
>
通过项目中英文面试
</div>
</div>
</div>
<div
class=
"admission_part"
>
<div
class=
"part_tit"
>
玛丽伍德大学 工商管理硕士
</div>
<div
class=
"part_desc"
>
<div
class=
"item_desc"
>
本科GPA成绩≥3.0;
</div>
<div
class=
"item_desc"
>
通过初审资料审核(详见申请材料)
</div>
<div
class=
"item_desc"
>
通过项目中英文面试
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"content-mod2"
v-if=
"showIndex === 2"
>
<!--
<img
class=
"main-banner"
/>
-->
<div
class=
"content-txt"
>
<ul
class=
"graduate_list"
>
<li
class=
"item_parts"
>
学生按照规定完成各项培养环节,修满所需学分。
</li>
<li
class=
"item_parts"
>
SIT项目学员毕业前学提交合格的英文测试成绩,除入学时符合英文免考条件的学生外,其余考生须在2023年9月1日前提供合格(不低于雅思7分或托福86分)的英文测试成绩,否则无法赴美直读正课,需搭配语言课。
</li>
<li
class=
"item_parts"
>
SBU项目学员通过学术英语课程考核可免掉托福或雅思要求,未通过者,需要提交托福80分或雅思6.5分的成绩。完成全部workshop课程,可免GMAT。
</li>
<li
class=
"item_parts"
>
玛丽伍德项目学员完成课程学习后需提交托福79分或雅思6.0分成绩,如不满足要求者可申请学校语言测试,未通过语言测试者,需搭配语言课程。
</li>
</ul>
</div>
</div>
</div>
</app-frame>
</
template
>
<
script
>
import
appFrame
from
'@/components/appFrame'
import
TabContent
from
'./components/TabContent.vue'
export
default
{
layout
:
'normal'
,
components
:
{
appFrame
},
components
:
{
appFrame
,
TabContent
},
data
()
{
return
{
showIndex
:
0
,
// tabActive: 'zjjy',
list
:
[
{
name
:
'zjjy'
,
label
:
this
.
$t
(
'apply.tabText1'
)
},
{
name
:
'kelley'
,
label
:
this
.
$t
(
'apply.tabText2'
)
},
{
name
:
'lhbx'
,
label
:
this
.
$t
(
'apply.tabText3'
)
}
],
tags
:
[
{
num
:
12
,
unit
:
this
.
$t
(
'bg.unit1'
),
text
:
this
.
$t
(
'bg.con1ItemT1'
)
},
{
num
:
522
,
unit
:
this
.
$t
(
'bg.unit2'
),
text
:
this
.
$t
(
'bg.con1ItemT2'
)
},
{
num
:
600
,
unit
:
'+'
,
text
:
this
.
$t
(
'bg.con1ItemT3'
)
},
{
num
:
700
,
unit
:
'+'
,
text
:
this
.
$t
(
'bg.con1ItemT4'
)
},
{
num
:
1000
,
unit
:
'+'
,
text
:
this
.
$t
(
'bg.con1ItemT5'
)
},
{
num
:
4800
,
unit
:
'+'
,
text
:
this
.
$t
(
'bg.con1ItemT6'
)
},
{
num
:
5000
,
unit
:
'+'
,
text
:
this
.
$t
(
'bg.con1ItemT7'
)
},
{
num
:
500
,
unit
:
this
.
$t
(
'bg.unit3'
),
text
:
this
.
$t
(
'bg.con1ItemT8'
)
}
],
frameParams
:
{
slider
:
[
{
name
:
this
.
$t
(
'menu.enrollChild.process'
),
path
:
'/enroll/process'
},
{
name
:
this
.
$t
(
'menu.enrollChild.brochure'
),
path
:
'/enroll/brochure'
},
{
name
:
this
.
$t
(
'menu.enrollChild.apply'
),
path
:
'/enroll/apply'
}
]
}
},
descList
:
[
{
desc
:
'1.在线填写申请表'
},
{
desc
:
'2.中英文简历各一份(在线提交即可)'
},
{
desc
:
'3.两封推荐信(在线提交后还需将纸版原件交给招办老师)'
},
{
desc
:
'4.本科毕业证'
},
{
desc
:
'5.本科学位证'
},
{
desc
:
'6.本科在读生提交在读证明,待毕业时补交毕业证、学位证'
},
{
desc
:
'7.本科完整成绩单,加盖学校公章'
},
{
desc
:
'8.本科在读提供当前现有成绩单,加盖学校公章,待毕业时需补交完整版成绩单'
},
{
desc
:
'9.海外取得的本科学历需提交中留服出具的学历认证'
},
{
desc
:
'10.有效证件复印件(身份证、护照)'
},
{
desc
:
'11.个人六个月内彩色证件照'
},
{
desc
:
'12.其他有助于申请的材料,如大学英语四六级成绩单、托福雅思参加、GMAT、GRE成绩、荣誉证书或资格证书等'
}
]
}
},
methods
:
{
tabChange
(
n
)
{
this
.
showIndex
=
n
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
ul
{
display
:
flex
;
justify-content
:
space-around
;
align-items
:
flex-start
;
flex-direction
:
column
;
margin-top
:
40px
;
}
li
{
padding
:
10px
;
}
p
{
font-size
:
16px
;
color
:
#333
;
}
.title
{
font-weight
:
400px
;
}
.desc
{
font-weight
:
300
;
}
.desc1
{
padding
:
10px
;
.content-mian
{
// padding: 0 0.16rem;
.content-mod1
{
// padding-top: 18px;
.content-txt
{
background
:
#fff
;
padding
:
68px
0
83px
64px
;
// padding: 0 16px 42px;
// margin-bottom: 36px;
.content_tit
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
32px
;
color
:
#424242
;
}
.tit
{
font-size
:
0
.14rem
;
font-weight
:
bold
;
line-height
:
100%
;
color
:
#333333
;
padding-top
:
0
.23rem
;
padding-bottom
:
0
.1rem
;
}
.text
{
.p
{
font-size
:
0
.12rem
;
line-height
:
0
.24rem
;
color
:
#424242
;
}
}
img
{
width
:
2
.59rem
;
margin-left
:
0
.08rem
;
margin-top
:
0
.27rem
;
display
:
block
;
}
}
}
.content-mod2
{
margin-top
:
0
.18rem
;
background
:
#fff
;
img
{
width
:
100%
;
}
.content-txt
{
background
:
#fff
;
padding
:
48px
65px
75px
51px
;
.p
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
32px
;
color
:
#424242
;
}
}
.descList
{
.list_tit
{
font-size
:
16px
;
font-weight
:
500
;
line-height
:
36px
;
color
:
#666666
;
}
.list_desc
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
40px
;
color
:
#424242
;
}
}
.admissionList
{
.list_tit
{
font-size
:
16px
;
font-weight
:
500
;
line-height
:
36px
;
color
:
#666666
;
}
.admission_desc
{
display
:
flex
;
justify-content
:
space-around
;
align-items
:
flex-start
;
.admission_part
{
padding-right
:
10px
;
.part_tit
{
width
:
286px
;
height
:
75px
;
background
:
#880126
;
box-shadow
:
0px
1px
25px
rgba
(
0
,
0
,
0
,
0
.06
);
border-radius
:
10px
10px
0px
0px
;
text-align
:
center
;
line-height
:
34px
;
font-size
:
18px
;
font-weight
:
400
;
color
:
#ffffff
;
}
.part_desc
{
width
:
286px
;
.item_desc
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
34px
;
color
:
#424242
;
text-align
:
center
;
}
.item_desc
:nth-child
(
odd
)
{
background
:
#fff
;
}
.item_desc
:nth-child
(
even
)
{
background
:
#f5f5f5
;
}
}
}
}
}
.graduate_list
{
.item_parts
{
list-style-type
:
disc
;
font-size
:
16px
;
font-weight
:
300
;
line-height
:
32px
;
color
:
#424242
;
margin-bottom
:
44px
;
}
.
item_parts
:
:
marker
{
color
:
#aa1941
;
}
}
}
}
</
style
>
pages/enroll/components/TabContent.vue
0 → 100644
浏览文件 @
21047a4a
<
template
>
<div
class=
"tab-content"
>
<li
v-for=
"(item, index) in items"
:key=
"index"
:class=
"activeIndex === index && 'active'"
@
click=
"tabChange(index)"
>
{{
item
}}
</li>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
items
:
[
this
.
$t
(
'apply.tabText1'
),
this
.
$t
(
'apply.tabText2'
),
this
.
$t
(
'apply.tabText3'
)],
activeIndex
:
0
}
},
methods
:
{
tabChange
(
n
)
{
this
.
activeIndex
=
n
this
.
$emit
(
'tabChange'
,
n
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.tab-content
{
padding
:
42px
64px
0
64px
;
display
:
flex
;
justify-content
:
space-around
;
li
{
width
:
278px
;
height
:
91px
;
line-height
:
91px
;
background
:
#fbfbfb
;
text-align
:
center
;
font-size
:
26px
;
font-weight
:
bold
;
color
:
#333333
;
position
:
relative
;
margin-right
:
18px
;
&
.active
{
color
:
#aa1941
;
background
:
#fff
;
box-shadow
:
0px
1px
25px
rgba
(
0
,
0
,
0
,
0
.06
);
&
:
:
after
{
content
:
''
;
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
8px
;
background
:
#aa1941
;
}
}
}
}
</
style
>
pages/project-intro/introduce.vue
浏览文件 @
21047a4a
...
...
@@ -13,7 +13,7 @@
</p>
<img
style=
"width:100%;height:100%"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/intro_bottom.png"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/intro_bottom
11
.png"
alt=
""
/>
</el-card>
...
...
pages/question/question.vue
浏览文件 @
21047a4a
<
template
>
<app-frame
:data=
"frameParams"
>
<el-card>
<h1
style=
"margin: 0 auto;text-align:center;"
>
<!--
<el-card>
-->
<div
class=
"main_content"
>
<div
class=
"title_mon"
>
常见问题
</h1>
<ul>
<li>
<p
class=
"title"
>
1.如何申请你们的硕士项目,流程是什么?
</p>
<p
class=
"desc"
>
本项目由中国招生办公室审核录取,流程是先在线提交报名申请、上传报名材料、初步审核、预约面试、面试通过发放录取、补交材料、缴费报名、注册学籍、开课学习
</p>
</li>
<li>
<p
class=
"title"
>
2.录取人数有没有限制?
</p>
<p
class=
"desc"
>
本项目名额有限,择优录取,每专业每期限招30人
</p>
</li>
<li>
<p
class=
"title"
>
3.大专生能否报考你们项目?专升本可以吗?
</p>
<p
class=
"desc"
>
本项目只接受本科学历申请,本科在读、本科毕业,专升本都是可以申请的。
</p>
</li>
<li>
<p
class=
"title"
>
4.本项目学制多久?获得的硕士学位证书与在美国全日制就读是否相同?
</p>
<p
class=
"desc"
>
本项目分为国内、国外两个学习阶段,不同项目课程时长会稍有区别,整体而言国内学习8个月左右,国外学习8个月左右。具体安排可参考开学课表。毕业获得的证书和在美全日制学习获得的证书完全一致,没有差别。
</p>
</li>
<li>
<p
class=
"title"
>
5.我的英语不好,我担忧英语过不了关,课程学习跟不上。怎么办?
</p>
<p
class=
"desc"
>
这您不用担忧,报名我们的硕士项目是没有硬性托福雅思成绩要求的,去美国的时候才需要提交语言成绩。我们在课程中专门配备了足够课时的雅思课,帮助您提升英语能力,掌握考试技巧,考到要求的语言分数。同时为学生提供学术英语课,帮助学生学习如何做英文演讲和写学术论文,具备充分的用英语学习的能力。国内阶段上课语言主要以中文为主,如是外籍老师上课,会有助教或是字幕翻译,课后作业可以纯中文提交。通常我们的学员经过课程学习,整体英语能力会有极大的提升,可以顺利衔接国外的学习。
</p>
</li>
<li>
<p
class=
"title"
>
6.你们的项目可以做留学认证吗?
</p>
<p
class=
"desc"
>
这个项目肯定是可以做中留服认证的。首先这是紫荆教育和美国大学联合培养的正规项目,合作的大学都是中国教育部认证的正规大学,可以通过教育部的涉外监管信息网查到相关信息。中国留服中心对学历认证的要求是在国外全日制学习一年以上并有往返签证记录,我们的项目符合时间要求。学员获得的毕业证书与在海外就读2年的学生无任何差异,不会有非全日制、在线、远程等字样。所以1+1项目的毕业学员,完全符合中留服学历认证的要求,获取的毕业证书可以进行留学认证。
</p>
</li>
<li>
<p
class=
"title"
>
7.为什么你们项目在中外合作办学里查不到?会影响学历认证吗?
</p>
<p
class=
"desc"
>
我们的项目是统招计划之外,无需联考,报名后筛选条件,符合要求者择优录取,所以不需要去教育部或者中留服单独备案。合作的美国大学都是教育部认证备案的正规大学,所以不影响回国学历认证。
</p>
</li>
<li>
<p
class=
"title"
>
8.为什么不是全程面授?我有充足的时间,可以申请面授吗?
</p>
<p
class=
"desc"
>
正常的课程安排来说,确实是面授。但是疫情期间,美方老师不方便飞到中国来授课,而且各个院校防疫措施做的很规范也很严格,我们的专家教授来自国内不同的顶尖的院校,受疫情管控也很难进校上课。为了方便教学,选择线上课的形式进行。我们采用专业的授课平台,师生互动很方便,教学效果不会受到影响。而且线上课的时间灵活,随时随地都能看,省去了同学们奔波的时间。面授课授课仅仅是上课的那几十分钟,听不懂的地方很难一讲再讲,但是线上课的视频可以无限次观看,保证没有知识点的遗漏。我们还配备了助教和班主任,做好知识难点课下辅导和学生服务工作。总而言之,不会影响学生上课体验还增加了灵活性。师生互动、生生互动更便捷。
</p>
</li>
<li>
<p
class=
"title"
>
9.你们项目的学费是多少?能不能申请分期缴纳?
</p>
<p
class=
"desc"
>
本项目具有极高性价比,国内学费仅6.9万,包括语言学习费用、专业课学习费用和学分兑换费用。国外费用学员直接交给美方院校,根据各学校收费标准制定。部分项目会有代美方收取的2000-2500美金左右的服务费,具体请咨询顾问老师。学费需入学前一次性缴纳,无法分期。
</p>
</li>
</ul>
<!--
<div
style=
"display:flex;justify-content:center"
>
<el-button
style=
"background-color:rgb(170, 25, 65);color:rgb(255, 255, 255);font-size:20px"
@
click=
"showApplyForm"
>
更多问题,请联系我们
</el-button
>
</div>
-->
<consultingForm
:visible
.
sync=
"popupVisible"
@
success=
"hideApplyForm"
@
close=
"close"
/>
</el-card>
</div>
<div
class=
"title_mon1"
v-for=
"(item, index) in questionList"
:key=
"index"
>
<div
class=
"title"
>
{{
item
.
tit
}}
</div>
<div
class=
"line"
></div>
<div
class=
"desc"
>
{{
item
.
desc
}}
</div>
</div>
</div>
<!--
</el-card>
-->
</app-frame>
</
template
>
<
script
>
import
appFrame
from
'@/components/appFrame'
import
consultingForm
from
'../../components/consultingForm.vue'
export
default
{
layout
:
'normal'
,
components
:
{
appFrame
,
consultingForm
},
components
:
{
appFrame
},
data
()
{
return
{
popupVisible
:
false
,
...
...
@@ -92,7 +31,52 @@ export default {
path
:
'/question/question'
}
]
}
},
questionList
:
[
{
tit
:
'1.如何申请你们的硕士项目,流程是什么?'
,
desc
:
'本项目由中国招生办公室审核录取,流程是先在线提交报名申请、上传报名材料、初步审核、预约面试、面试通过发放录取、补交材料、缴费报名、注册学籍、开课学习。'
},
{
tit
:
'2.录取人数有没有限制?'
,
desc
:
'本项目名额有限,择优录取,每专业每期限招30人。'
},
{
tit
:
'3.大专生能否报考你们项目?专升本可以吗?'
,
desc
:
'本项目只接受本科学历申请,本科在读、本科毕业,专升本都是可以申请的。'
},
{
tit
:
'4.本项目学制多久?获得的硕士学位证书与在美国全日制就读是否相同'
,
desc
:
'本项目分为国内、国外两个学习阶段,不同项目课程时长会稍有区别,整体而言国内学习8个月左右,国外学习8个月左右。具体安排可参考开学课表。毕业获得的证书和在美全日制学习获得的证书完全一致,没有差别。'
},
{
tit
:
'5.我的英语不好,我担忧英语过不了关,课程学习跟不上。怎么办?'
,
desc
:
'这您不用担忧,报名我们的硕士项目是没有硬性托福雅思成绩要求的,去美国的时候才需要提交语言成绩。我们在课程中专门配备了足够课时的雅思课,帮助您提升英语能力,掌握考试技巧,考到要求的语言分数。同时为学生提供学术英语课,帮助学生学习如何做英文演讲和写学术论文,具备充分的用英语学习的能力。国内阶段上课语言主要以中文为主,如是外籍老师上课,会有助教或是字幕翻译,课后作业可以纯中文提交。通常我们的学员经过课程学习,整体英语能力会有极大的提升,可以顺利衔接国外的学习。'
},
{
tit
:
'6.你们的项目可以做留学认证吗'
,
desc
:
'这个项目肯定是可以做中留服认证的。首先这是紫荆教育和美国大学联合培养的正规项目,合作的大学都是中国教育部认证的正规大学,可以通过教育部的涉外监管信息网查到相关信息。中国留服中心对学历认证的要求是在国外全日制学习一年以上并有往返签证记录,我们的项目符合时间要求。学员获得的毕业证书与在海外就读2年的学生无任何差异,不会有非全日制、在线、远程等字样。所以1+1项目的毕业学员,完全符合中留服学历认证的要求,获取的毕业证书可以进行留学认证。'
},
{
tit
:
'7.为什么你们项目在中外合作办学里查不到?会影响学历认证吗?'
,
desc
:
'我们的项目是统招计划之外,无需联考,报名后筛选条件,符合要求者择优录取,所以不需要去教育部或者中留服单独备案。合作的美国大学都是教育部认证备案的正规大学,所以不影响回国学历认证。'
},
{
tit
:
' 8.为什么不是全程面授?我有充足的时间,可以申请面授吗?'
,
desc
:
'正常的课程安排来说,确实是面授。但是疫情期间,美方老师不方便飞到中国来授课,而且各个院校防疫措施做的很规范也很严格,我们的专家教授来自国内不同的顶尖的院校,受疫情管控也很难进校上课。为了方便教学,选择线上课的形式进行。我们采用专业的授课平台,师生互动很方便,教学效果不会受到影响。而且线上课的时间灵活,随时随地都能看,省去了同学们奔波的时间。面授课授课仅仅是上课的那几十分钟,听不懂的地方很难一讲再讲,但是线上课的视频可以无限次观看,保证没有知识点的遗漏。我们还配备了助教和班主任,做好知识难点课下辅导和学生服务工作。总而言之,不会影响学生上课体验还增加了灵活性。师生互动、生生互动更便捷。'
},
{
tit
:
'9.你们项目的学费是多少?能不能申请分期缴纳?'
,
desc
:
'本项目具有极高性价比,国内学费仅6.9万,包括语言学习费用、专业课学习费用和学分兑换费用。国外费用学员直接交给美方院校,根据各学校收费标准制定。部分项目会有代美方收取的2000-2500美金左右的服务费,具体请咨询顾问老师。学费需入学前一次性缴纳,无法分期。'
}
]
}
},
methods
:
{
...
...
@@ -109,24 +93,38 @@ export default {
}
</
script
>
<
style
lang=
"scss"
scoped
>
ul
{
display
:
flex
;
justify-content
:
space-around
;
align-items
:
flex-start
;
flex-direction
:
column
;
margin-top
:
40px
;
}
li
{
padding
:
20px
;
}
p
{
font-size
:
16px
;
color
:
#333
;
}
.title
{
font-weight
:
400px
;
}
.desc
{
font-weight
:
300
;
.main_content
{
padding
:
40px
50px
101px
50px
;
.title_mon
{
font-size
:
22px
;
font-weight
:
500
;
line-height
:
34px
;
color
:
#333333
;
margin-bottom
:
37px
;
}
.title_mon1
{
margin-bottom
:
74px
;
.line
{
width
:
899px
;
height
:
1px
;
background
:
#e6e6e6
;
margin-top
:
12px
;
margin-bottom
:
11px
;
}
.title
{
font-size
:
16px
;
font-weight
:
500
;
line-height
:
36px
;
color
:
#666666
;
}
.desc
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
32px
;
color
:
#424242
;
}
}
}
</
style
>
pages/returnPolicy/returnPolicy.vue
浏览文件 @
21047a4a
...
...
@@ -5,11 +5,31 @@
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/return_banner.png"
alt=
""
/>
<img
style=
"width:100%;height:100%;padding-left:90px;padding-top:53px;padding-bottom:146px"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/return_con.png"
alt=
""
/>
<div
class=
"com_top"
>
<h1
class=
"com_title"
>
留学回国人员福利政策
</h1>
<h2
class=
"com_title_dec"
>
中华人民共和国教育部:“鼓励留学,支持回国”
</h2>
<div
class=
"com_con"
>
中国教育部思想政治工作司司长魏士强在12月7日的新闻发布会中发表评论:“支持留学、鼓励回国、来去自由、发挥作用”
<br
/>
是我国多年来奉行的留学政策,即使是进入新时代,我们依然要一以贯之地实行。
<br
/>
我国各省市、地区针对留学生回国颁布了人才引流福利政策,留学已经成为越来越多学生的升学选择。
</div>
</div>
<div
class=
"com_bottom"
>
<div
class=
"left_part"
>
<div
class=
"line"
></div>
</div>
<div
class=
"right_part"
>
<div
class=
"right_part_item"
v-for=
"(item, id) in policyData"
:key=
"id"
>
<div
class=
"item_title"
>
<span
class=
"item_id"
>
{{
item
.
id
}}
</span>
<span
class=
"item_tit"
>
{{
item
.
title
}}
</span>
</div>
<div
class=
"dash_line"
></div>
<div
class=
"item_desc"
>
{{
item
.
desc
}}
</div>
</div>
</div>
</div>
</app-frame>
</
template
>
<
script
>
...
...
@@ -26,8 +46,134 @@ export default {
path
:
'/returnPolicy/returnPolicy'
}
]
}
},
policyData
:
[
{
id
:
1
,
title
:
'积分落户'
,
desc
:
'北京、上海、广州、深圳、天津等地为取得教育部学历认证的海外留学人员提供落户便利,符合条件者可提出申请,办理落户。'
},
{
id
:
2
,
title
:
'人才补助'
,
desc
:
'上海、广州、深圳、杭州等地为海归人才提供最高6万的生活补贴。获得北京市“特聘专家”称号可直接获得100万奖励。'
},
{
id
:
3
,
title
:
'创业扶持'
,
desc
:
' 朝阳区“凤凰计划”、海淀区青年英才资助计划、上海浦江人才计划等为符合条件的回国创业海归人员提供15万到50万的创业补贴。'
},
{
id
:
4
,
title
:
'百人计划'
,
desc
:
' 中科院百人计划,引进国外杰出博士人才,以每人200万元的资助力度从国外吸引并培养百余名优秀青年学术带头人。一旦入选,除获得一次性启动经费外还可获得中科院特殊津贴。'
},
{
id
:
5
,
title
:
'学术研究'
,
desc
:
' 在职称上,很多人的职称都比在国外时高了一个或者几个档次。评职称时,海归不受工作年限的限制而可以申报。在外留学一年以上,年龄四十五周岁以下,回国后在科研单位从事教学、科研工作的可申请留学回国人员科研启动资金。'
},
{
id
:
6
,
title
:
'购房购车'
,
desc
:
'在职称上,很多人的职称都比在国外时高了一个或者几个档次。评职称时,海归不受工作年限的限制而可以申报。在外留学一年以上,年龄四十五周岁以下,回国后在科研单位从事教学、科研工作的可申请留学回国人员科研启动资金。'
},
{
id
:
7
,
title
:
'子女入学'
,
desc
:
'有些地区对于留学人员子女入学有优惠政策,通常由教育部门统一安排,择校入学;在国外生活5年以上,在语言文字适应期内入学,给予加分优惠,区内设有教授外语的学校供留学生自由选择。'
}
]
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.com_top
{
padding
:
82px
50px
0
50px
;
box-sizing
:
border-box
;
.com_title
{
font-size
:
22px
;
font-weight
:
500
;
color
:
#333333
;
}
.com_title_dec
{
font-size
:
20px
;
font-weight
:
400
;
color
:
#424242
;
margin-top
:
20px
;
}
.com_con
{
font-size
:
16px
;
font-weight
:
300
;
color
:
#424242
;
line-height
:
32px
;
margin-top
:
52px
;
}
}
.com_bottom
{
display
:
flex
;
justify-content
:
center
;
padding
:
60px
60px
102px
60px
;
.left_part
{
display
:
flex
;
justify-content
:
center
;
flex-direction
:
column
;
position
:
relative
;
.line
{
width
:
0px
;
height
:
930px
;
border
:
1px
dashed
#aa1941
;
z-index
:
10
;
margin-top
:
-130px
;
}
}
.right_part
{
position
:
relative
;
.item_title
{
.item_id
{
display
:
inline-block
;
width
:
24px
;
height
:
24px
;
line-height
:
24px
;
background
:
#aa1941
;
border-radius
:
50%
;
text-align
:
center
;
margin-left
:
-14px
;
margin-top
:
5px
;
position
:
absolute
;
z-index
:
1000000
;
}
.item_tit
{
font-size
:
16px
;
font-weight
:
500
;
line-height
:
36px
;
color
:
#666666
;
padding-left
:
30px
;
}
}
.dash_line
{
border
:
1px
dashed
#d5d5d5
;
width
:
857px
;
margin-left
:
30px
;
}
.item_desc
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
32px
;
color
:
#424242
;
padding-left
:
29px
;
margin
:
20px
0
43px
0px
;
}
}
}
</
style
>
pages/school/school1.vue
浏览文件 @
21047a4a
...
...
@@ -17,10 +17,10 @@
/>
<img
style=
"width:100%;height:100%;margin-top:68px"
src=
"https://webapp-pub.ezijing.com/project/marywood/school
14
.png"
src=
"https://webapp-pub.ezijing.com/project/marywood/school
241
.png"
/>
<div
class=
"content"
>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/school
15
.png"
/>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/school
251
.png"
/>
</div>
<div
style=
"width:1200px;margin:auto;text-align:center;display:flex;justify-content:flex-start;margin-top:64px;"
>
<div
style=
"width: 6px;height: 34px;background: #AA1941;margin-right:9px;margin-top:6px"
></div>
...
...
@@ -28,7 +28,7 @@
</div>
<img
style=
"width:100%;height:100%;margin-top:64px"
src=
"https://webapp-pub.ezijing.com/project/marywood/school161.png"
src=
"https://webapp-pub.ezijing.com/project/marywood/school161
1
.png"
/>
<div
class=
"content"
>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/school17.png"
/>
...
...
pages/school/school2.vue
浏览文件 @
21047a4a
...
...
@@ -17,7 +17,7 @@
/>
<img
style=
"width:100%;height:100%;margin-top:68px"
src=
"https://webapp-pub.ezijing.com/project/marywood/school24.png"
src=
"https://webapp-pub.ezijing.com/project/marywood/school24
12
.png"
/>
<div
class=
"content"
>
<img
src=
"https://webapp-pub.ezijing.com/project/marywood/school25.png"
/>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论