Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
15e1a045
提交
15e1a045
authored
4月 21, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
项目优化
上级
02cd541b
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
97 行增加
和
57 行删除
+97
-57
projectPosition.vue
components/home/projectPosition.vue
+2
-1
Index.vue
components/layout/h5/Index.vue
+1
-2
apply.vue
pages/enroll/apply.vue
+26
-13
process.vue
pages/enroll/process.vue
+1
-1
school3.vue
pages/school/school3.vue
+67
-40
没有找到文件。
components/home/projectPosition.vue
浏览文件 @
15e1a045
...
...
@@ -108,7 +108,8 @@ export default {
color
:
#666666
;
padding
:
28px
30px
0
30px
;
p
{
text-indent
:
2em
;
// text-indent: 2em;
line-height
:
36px
;
}
}
}
...
...
components/layout/h5/Index.vue
浏览文件 @
15e1a045
...
...
@@ -33,4 +33,4 @@ export default {
box-shadow
:
0
1px
20px
rgba
(
0
,
0
,
0
,
0
.04
);
}
}
</
style
>
\ No newline at end of file
</
style
>
pages/enroll/apply.vue
浏览文件 @
15e1a045
...
...
@@ -3,11 +3,15 @@
<img
src=
"https://webapp-pub.ezijing.com/project_online_pc/sub_plus/enroll-process-apply-banner.png"
/>
<div
class=
"content-mian"
>
<ul>
<ul
class=
"content-mian_con"
>
<!--
<li
class=
"applyList_con"
>
<div
class=
"apply_name"
>
学历要求
</div>
<div
class=
"apply_desc"
>
本科学历(有学士学位)及以上或者本科在读(大三或大四)
</div>
</li>
-->
<li
class=
"applyList_con"
>
<div
class=
"apply_name"
>
GPA要求
</div>
<div
class=
"apply_desc"
>
在校GPA不低于3.0或经审核具有研究生学习潜力的优秀学生
</div>
</li>
<li
class=
"applyList_con"
>
<div
class=
"apply_name"
>
GMAT要求
</div>
<div
class=
"apply_desc"
>
...
...
@@ -18,18 +22,18 @@
<li
class=
"applyList_con"
>
<div
class=
"apply_name"
>
语言要求
</div>
<div
class=
"apply_desc"
>
1.托福≥80分或雅思≥6.5分(单项不低于6.0)
<br
/>
2.无法满足上述语言要求但符合下列情况之一的申请者,入学后须参加英语强化课程学习并于第二学年赴美国参加纽约州立大学石溪分校组织的语言考试且合格
· Duolingo≥105分
<br
/>
· iTEP Academic≥4.0
<br
/>
· CET-6(大学英语六级)≥450分
<br
/>
· 75分≤托福
<80
分
<br
/>
· 6.0分(单项不低于5.5)≤雅思
<6
.
5
分
托福≥80分或雅思≥6.5分(单项不低于6.0)
<br
/>
·
无法满足上述语言要求但符合下列情况之一的申请者,入学后须参加英语强化课程学习并于第二学年赴美国参加纽约州立大学石溪分校组织的语言考试且合格
<ul>
<li><p>
Duolingo≥105分
</p></li>
<li><p>
iTEP Academic≥4.0
</p></li>
<li><p>
CET-6(大学英语六级)≥450分
</p></li>
<li><p>
75分≤托福
<80
分
</p></li>
<li><p>
6.0分(单项不低于5.5)≤雅思
<6
.
5
分
</p></li>
</ul>
</div>
</li>
<li
class=
"applyList_con"
>
<div
class=
"apply_name"
>
GPA要求
</div>
<div
class=
"apply_desc"
>
在校GPA不低于3.0或经审核具有研究生学习潜力的优秀学生
</div>
</li>
</ul>
<!--
<tab-content
@
tabChange=
"tabChange"
></tab-content>
<div
class=
"content-mod1"
v-if=
"showIndex === 0"
>
...
...
@@ -145,7 +149,7 @@ export default {
<
style
lang=
"scss"
scoped
>
.is-pc
{
.content-mian
{
ul
{
.content-mian_con
{
padding
:
56px
65px
67px
56px
;
.applyList_con
{
.apply_name
{
...
...
@@ -158,8 +162,17 @@ export default {
font-size
:
16px
;
font-weight
:
400
;
color
:
#666666
;
margin-top
:
20px
;
line-height
:
2
;
ul
{
margin-left
:
20px
;
li
{
list-style-type
:
disc
;
color
:
#aa1941
;
p
{
color
:
#666666
!
important
;
}
}
}
}
}
li
{
...
...
pages/enroll/process.vue
浏览文件 @
15e1a045
...
...
@@ -20,7 +20,7 @@
<li>
4.个人简历(英文)
</li>
<li>
5.个人陈述(英文)
</li>
<li>
6.两寸免冠彩色照片(白底,两张)
</li>
<li>
7.英语成绩单
*
</li>
<li>
7.英语成绩单
</li>
</ul>
<div
class=
"tips"
>
*成绩单类型包括:大学英语六级、托福、雅思、Duolingo、iTEP Academic
</div>
<p
style=
"margin-top:30px"
>
咨询电话:010-62798073 滑老师 18610017331
</p>
...
...
pages/school/school3.vue
浏览文件 @
15e1a045
...
...
@@ -70,7 +70,7 @@
<div
class=
"content_part"
>
<div
class=
"img5 img55"
>
<div
class=
"mask"
></div>
<div
class=
"desc"
>
<div
class=
"desc
desc_child
"
>
<div
class=
"desc_detail"
><span
class=
"num"
>
1+1
</span><span
class=
"fen"
></span></div>
<div
class=
"desc_tit"
>
学制安排
</div>
</div>
...
...
@@ -78,15 +78,15 @@
<div
class=
"img6 img55"
>
<div
class=
"mask"
></div>
<div
class=
"desc"
>
<div
class=
"desc
desc_child
"
>
<div
class=
"desc_detail"
><span
class=
"num"
>
30
</span><span
class=
"fen"
>
学分
</span></div>
<div
class=
"desc_tit"
>
学分设置
</div>
</div>
</div>
<div
class=
"img7 img55"
>
<div
class=
"mask"
></div>
<div
class=
"desc"
>
<div
class=
"desc_detail"
>
<div
class=
"desc
desc_child
"
>
<div
class=
"desc_detail
"
>
<span
class=
"num"
>
4
</span><span
class=
"fen fen1"
>
门课
</span><span
class=
"num"
>
12
</span
><span
class=
"fen"
>
学分
</span>
</div>
...
...
@@ -95,10 +95,21 @@
</div>
<div
class=
"img8 img55"
>
<div
class=
"mask"
></div>
<div
class=
"desc"
>
<div
class=
"desc
desc_last
"
>
<div
class=
"desc_detail"
>
<span
class=
"num"
>
8
</span><span
class=
"fen fen1"
>
门课
</span><span
class=
"num"
>
24
</span
><span
class=
"fen"
>
学分
</span>
<!--
<span
class=
"num"
>
8
</span><span
class=
"fen fen1"
>
门课
</span><span
class=
"num"
>
24
</span
><span
class=
"fen"
>
学分
</span>
-->
<div
class=
"desc_detail_item"
>
<span
class=
"fen fen1"
>
强化课程
</span><span
class=
"num"
>
8
</span><span
class=
"fen fen1"
>
门
</span>
</div>
<div
class=
"desc_detail_item"
>
<span
class=
"fen fen1"
>
硕士先修课程
</span><span
class=
"num"
>
4
</span><span
class=
"fen fen1"
>
门
</span>
</div>
<div
class=
"desc_detail_item"
>
<span
class=
"fen fen1"
>
硕士项目课程
</span>
<span
class=
"num"
>
2
</span><span
class=
"fen fen1"
>
门
</span><span
class=
"num"
>
6
</span
><span
class=
"fen fen1"
>
学分
</span>
</div>
</div>
<div
class=
"desc_tit"
>
国外授课
</div>
</div>
...
...
@@ -113,9 +124,7 @@
<div
class=
"tit_desc"
>
课程设置
</div>
</div>
<div
class=
"course-set"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/sub_plus/school-course-img1.png?v=1"
/>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/sub_plus/pc-school-img91.png?v=1"
/>
<div
class=
"course-set-tips"
>
注*:课程随教学计划可能会有调整,以实际开课为准。
</div>
</div>
</div>
...
...
@@ -200,31 +209,31 @@ export default {
return
{
applyList
:
[
// {
// img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step1.png',
// tit: '学历要求',
// desc: '本科学历(有学士学位)及以上或者本科在读(大三或大四)',
// tips: ''
// },
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step3.png'
,
tit
:
'GPA'
,
desc
:
'在校GPA不低于3.0或经审核具有研究生学习潜力的优秀学生。'
,
tips
:
''
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step3.png'
,
tit
:
'GMAT'
,
desc
:
'1. GMAT 550分及以上<br/>2. 无GMAT成绩或GMAT低于550分的申请者,入学后须参加GMAT强化课程并考试合格。'
,
tips
:
''
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step2.png'
,
tit
:
'语言'
,
desc
:
'1. 托福≥80分或雅思≥6.5分(单项不低于6.0)<br/>2. 无法满足上述语言要求但符合下列情况之一的申请者,入学后须参加英语强化课程学习并于第二学年赴美国参加纽约州立大学石溪分校组织的语言考试且合格'
,
tips
:
'· Duolingo≥105分·iTEP Academic≥4.0<br/> · CET-6(大学英语六级)≥450分<br/> · 75分≤托福<80分<br/> · 6.0分(单项不低于5.5)≤雅思<6.5分'
tips
:
`<ul>
<li><p>Duolingo≥105分</p></li>
<li><p>iTEP Academic≥4.0</p></li>
<li><p>CET-6(大学英语六级)≥450分</p></li>
<li><p>75分≤托福<80</p></li>
<li><p>6.0分(单项不低于5.5)≤雅思<6.5分</p></li>
</ul>`
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step3.png'
,
tit
:
'GPA'
,
desc
:
'在校GPA不低于3.0或经审核具有研究生学习潜力的优秀学生。'
,
tips
:
''
}
],
courseSetTab
:
0
,
...
...
@@ -318,6 +327,9 @@ export default {
font-weight
:
400
;
color
:
#7b7b7b
;
}
// li {
// }
}
.banner
{
position
:
relative
;
...
...
@@ -451,8 +463,7 @@ export default {
}
}
.content_list_item_center
{
text-align
:
center
;
text-align
:
left
;
font-size
:
16px
;
font-weight
:
400
;
color
:
#666666
;
...
...
@@ -461,17 +472,33 @@ export default {
}
.content_list_item_bottom
{
font-size
:
1
4
px
;
font-size
:
1
6
px
;
font-weight
:
400
;
color
:
#
999999
;
margin-top
:
27px
;
color
:
#
666666
!
important
;
//
margin-top: 27px;
text-align
:
left
;
line-height
:
2
;
::v-deep
{
li
{
list-style-type
:
disc
;
color
:
#aa1941
;
margin-left
:
15px
;
p
{
font-size
:
16px
;
font-weight
:
400
;
color
:
#666666
!
important
;
// margin-top: 27px;
text-align
:
left
;
line-height
:
2
;
}
}
}
}
}
}
.content_list_item
:nth-child
(
2
)
.content_list_item_center
{
text-align
:
left
;
.content_list_item
:nth-child
(
3
)
.content_list_item_center
{
text-align
:
center
;
}
.content_desc
{
width
:
536px
;
...
...
@@ -542,12 +569,13 @@ export default {
height
:
100%
;
pointer-events
:
none
;
}
.desc_child
{
margin
:
137px
auto
;
}
.desc_last
{
margin
:
43px
auto
;
}
.desc
{
display
:
flex
;
align-items
:
center
;
flex-direction
:
column
;
justify-content
:
center
;
margin-top
:
137px
;
transition
:
all
0
.15s
ease-in
;
position
:
relative
;
z-index
:
11
;
...
...
@@ -560,10 +588,6 @@ export default {
.desc_detail
{
color
:
#ffffff
;
display
:
flex
;
justify-content
:
flex-end
;
align-items
:
center
;
flex-wrap
:
nowrap
;
visibility
:
hidden
;
.num
{
font-size
:
55px
;
...
...
@@ -577,6 +601,9 @@ export default {
.fen1
{
padding-right
:
5px
;
}
.desc_detail_item
{
margin-top
:
-20px
;
}
}
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论