Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-www-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-www-pc
Commits
82381f2f
提交
82381f2f
authored
9月 23, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
updates
上级
35b989ea
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
207 行增加
和
168 行删除
+207
-168
alumniStories.vue
components/home/alumniStories.vue
+0
-1
openClass.vue
components/home/openClass.vue
+5
-5
projectNotice.vue
components/home/projectNotice.vue
+8
-2
projectService.vue
components/home/projectService.vue
+1
-1
company.vue
components/home/projectService/company.vue
+1
-0
personal.vue
components/home/projectService/personal.vue
+192
-159
没有找到文件。
components/home/alumniStories.vue
浏览文件 @
82381f2f
...
...
@@ -124,7 +124,6 @@ export default {
.content_desc
{
width
:
568px
;
height
:
100%
;
margin-left
:
32px
;
.desc_tit
{
margin-top
:
56px
;
...
...
components/home/openClass.vue
浏览文件 @
82381f2f
...
...
@@ -116,14 +116,14 @@ export default {
left
:
0
;
bottom
:
0
;
width
:
100%
;
line-height
:
40px
;
background
:
rgba
(
0
,
0
,
0
,
0
.5
);
padding
:
0
20
px
;
font-size
:
20
px
;
color
:
#f
efefe
;
padding
:
17px
0
14px
17
px
;
font-size
:
18
px
;
color
:
#f
fffff
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
box-sizing
:
border-box
;
}
}
...
...
@@ -172,7 +172,7 @@ export default {
margin-left
:
17px
;
.tit
{
font-size
:
18px
;
font-weight
:
5
00
;
font-weight
:
4
00
;
line-height
:
24px
;
color
:
#333333
;
}
...
...
components/home/projectNotice.vue
浏览文件 @
82381f2f
...
...
@@ -52,7 +52,7 @@ export default {
delay
:
3000
,
loop
:
true
,
direction
:
'vertical'
,
height
:
8
2
,
height
:
10
2
,
loopAdditionalSlides
:
1
},
activityList
:
[]
...
...
@@ -134,7 +134,7 @@ export default {
// transform: translateY(-15px);
.li
{
display
:
flex
;
align-items
:
center
;
align-items
:
flex-start
;
padding-top
:
26px
;
padding-bottom
:
26px
;
.txt
{
...
...
@@ -143,6 +143,12 @@ export default {
font-weight
:
400
;
color
:
#424242
;
text-align
:
center
;
text-overflow
:
ellipsis
;
overflow
:
hidden
;
display
:
-
webkit-box
;
-webkit-box-orient
:
vertical
;
-webkit-line-clamp
:
2
;
//超出第几行,关键在这里
line-clamp
:
2
;
//超出第几行,关键在这里
}
.time
{
font-size
:
30px
;
...
...
components/home/projectService.vue
浏览文件 @
82381f2f
...
...
@@ -75,7 +75,7 @@ export default { components: { Goverment, School, Company, Personal } }
height
:
643px
;
background
:
#ffffff
;
margin-top
:
18px
;
padding
:
3
0
px
;
padding
:
3
2px
40px
57px
32
px
;
}
}
}
...
...
components/home/projectService/company.vue
浏览文件 @
82381f2f
...
...
@@ -79,6 +79,7 @@ export default {
}
li
:nth-child
(
2
)
{
margin-top
:
40px
;
z-index
:
10
;
}
}
}
...
...
components/home/projectService/personal.vue
浏览文件 @
82381f2f
...
...
@@ -4,58 +4,40 @@
<div
class=
"content_top"
>
<h6
class=
"top_title"
>
国际学位
</h6>
<div
class=
"top_con"
>
<div
class=
"con_left"
>
<div
class=
"left_tit"
>
— 硕士 —
</div>
<ul
class=
"left_con"
>
<li
v-for=
"(item, index) in masterList"
:key=
"index"
>
<AppLink
:data=
"item"
>
<img
:src=
"item.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"item.desc"
></div>
</AppLink>
</li>
</ul>
</div>
<div
class=
"con_left"
>
<div
class=
"left_tit"
>
— MBA —
</div>
<ul
class=
"left_con left_con2"
>
<li
v-for=
"(item, index) in mbaList"
:key=
"index"
>
<AppLink
:data=
"item"
>
<img
:src=
"item.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"item.desc"
></div>
</AppLink>
</li>
</ul>
<div
class=
"con_left"
v-for=
"(item, index) in degreeList"
:key=
"index"
>
<div
class=
"left_tit"
>
{{
item
.
title
}}
</div>
<div
class=
"left_content"
>
<ul
class=
"left_con"
>
<li
v-for=
"(it, index) in item.children"
:key=
"index"
>
<AppLink
:data=
"it"
>
<img
:src=
"it.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"it.desc"
></div>
</AppLink>
</li>
</ul>
<div
class=
"line"
v-if=
"item.isLine"
></div>
</div>
</div>
</div>
</div>
<div
class=
"content_top"
>
<h6
class=
"top_title"
>
留学深造
</h6>
<div
class=
"top_con"
>
<div
class=
"con_left"
>
<div
class=
"left_tit"
>
— 硕士直通车 —
</div>
<ul
class=
"left_con1"
>
<li
v-for=
"(item, index) in masterAbroadList"
:key=
"index"
>
<AppLink
:data=
"item"
>
<div
class=
"con"
>
<img
:src=
"item.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"item.desc"
></div>
</div>
</AppLink>
</li>
</ul>
</div>
<div
class=
"con_left"
>
<div
class=
"left_tit"
>
— 博士 —
</div>
<ul
class=
"left_con1 left_con2"
>
<li
v-for=
"(item, index) in doctorList"
:key=
"index"
>
<AppLink
:data=
"item"
>
<div
class=
"con"
>
<img
:src=
"item.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"item.desc"
></div>
</div>
</AppLink>
</li>
</ul>
<div
class=
"con_left con_left1"
v-for=
"(item, index) in abroadList"
:key=
"index"
>
<div
class=
"left_tit"
>
{{
item
.
title
}}
</div>
<div
class=
"left_content"
>
<ul
class=
"left_con1"
>
<li
v-for=
"(it, index) in item.children"
:key=
"index"
>
<AppLink
:data=
"it"
>
<div
class=
"con"
>
<img
:src=
"it.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"it.desc"
></div>
</div>
</AppLink>
</li>
</ul>
<div
class=
"line1"
v-if=
"item.isLine"
></div>
</div>
</div>
</div>
</div>
...
...
@@ -68,62 +50,84 @@ export default {
components
:
{
AppLink
},
data
()
{
return
{
masterList
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_med1.png'
,
desc
:
'教育学硕士(儿童)<br/>MED'
,
href
:
'https://cu.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_msf.png'
,
desc
:
'金融硕士<br/>MSF'
,
href
:
'https://kelley.ezijing.com/'
},
degreeList
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_map.png'
,
desc
:
'应用心理学硕士<br/>MAP'
,
href
:
'https://ciis.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_med2.png'
,
desc
:
'教育学硕士(家庭) <br/>MED'
,
href
:
'https://cuw.ezijing.com/index'
}
],
mbaList
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba1.png'
,
desc
:
'数字领导力方向<br/>MBA'
,
href
:
'https://marywood.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba2.png'
,
desc
:
'酒店和旅游方向<br/>MBA'
,
href
:
'https://shms.ezijing.com/'
title
:
'— 硕士 —'
,
isLine
:
true
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_med1.png'
,
desc
:
'教育学硕士(儿童)<br/>MED'
,
href
:
'https://cu.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_msf.png'
,
desc
:
'金融硕士<br/>MSF'
,
href
:
'https://kelley.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_map.png'
,
desc
:
'应用心理学硕士<br/>MAP'
,
href
:
'https://ciis.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_med2.png'
,
desc
:
'教育学硕士(家庭) <br/>MED'
,
href
:
'https://cuw.ezijing.com/index'
}
]
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba3.png'
,
desc
:
'餐饮管理方向<br/>MBA'
,
href
:
'https://caas.ezijing.com/'
title
:
'— MBA —'
,
isLine
:
false
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba1.png'
,
desc
:
'数字领导力方向<br/>MBA'
,
href
:
'https://marywood.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba2.png'
,
desc
:
'酒店和旅游方向<br/>MBA'
,
href
:
'https://shms.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba3.png'
,
desc
:
'餐饮管理方向<br/>MBA'
,
href
:
'https://caas.ezijing.com/'
}
]
}
],
masterAbroadList
:
[
abroadList
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad1.png'
,
desc
:
'纽约州立大学石溪分校<br/>金融学硕士保研项目'
,
href
:
'https://sbu-plus.ezijing.com/'
title
:
'— 硕士直通车 —'
,
isLine
:
true
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad1.png'
,
desc
:
'纽约州立大学石溪分校<br/>金融学硕士保研项目'
,
href
:
'https://sbu-plus.ezijing.com/'
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad2.png'
,
desc
:
'斯蒂文斯理工学院<br/>工程管理硕士保研项目'
,
href
:
'https://sit-plus.ezijing.com/'
}
]
},
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad2.png'
,
desc
:
'斯蒂文斯理工学院<br/>工程管理硕士保研项目'
,
href
:
'https://sit-plus.ezijing.com/'
}
],
doctorList
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad3.png'
,
desc
:
'加州浸会大学<br/>工商管理博士项目DBA'
,
href
:
'https://cbu-plus.ezijing.com/'
title
:
'— 博士 —'
,
isLine
:
false
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad3.png'
,
desc
:
'加州浸会大学<br/>工商管理博士项目DBA'
,
href
:
'https://cbu-plus.ezijing.com/'
}
]
}
]
}
...
...
@@ -155,97 +159,126 @@ export default {
height
:
192px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
//
align-items: center;
.left_tit
{
font-size
:
16px
;
color
:
#000000
;
}
.left_con
{
.left_con
tent
{
display
:
flex
;
justify-content
:
space-around
;
margin-top
:
10px
;
li
{
width
:
148px
;
height
:
156px
;
opacity
:
1
;
.left_con
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
padding-top
:
10px
;
cursor
:
pointer
;
justify-content
:
space-around
;
margin-top
:
30px
;
li
{
width
:
148px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
cursor
:
pointer
;
&
:hover
{
background
:
#aa1940
;
&
:hover
{
background
:
#aa1940
;
padding-top
:
10px
;
padding-bottom
:
14px
;
margin-top
:
-10px
;
.con_desc
{
color
:
#f9f8f8
;
}
}
.con_img
{
width
:
128px
;
height
:
90px
;
}
.con_desc
{
color
:
#f9f8f8
;
text-align
:
center
;
margin-top
:
10px
;
font-size
:
14px
;
line-height
:
18px
;
color
:
#333333
;
}
}
.con_img
{
width
:
128px
;
height
:
90px
;
}
.con_desc
{
text-align
:
center
;
margin-top
:
10px
;
font-size
:
14px
;
line-height
:
18px
;
color
:
#333333
;
li
:not
(
:last-child
)
{
margin-right
:
10px
;
}
}
li
:last-child
{
margin-right
:
37px
;
.line
{
width
:
0px
;
height
:
129px
;
border
:
1px
dashed
#c4c4c4
;
margin
:
30px
25px
5px
25px
;
}
}
.left_con1
{
display
:
flex
;
margin-top
:
30px
;
.left_con1
{
display
:
flex
;
margin-top
:
30px
;
li
{
width
:
342px
;
height
:
130px
;
background
:
#f9f8f8
;
box-sizing
:
border-box
;
.con
{
li
{
width
:
342px
;
height
:
130px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
padding
:
10px
16px
10px
10px
;
}
&
:hover
{
background
:
#aa1940
;
background
:
#f9f8f8
;
box-sizing
:
border-box
;
.con
{
width
:
342px
;
height
:
130px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
padding
:
10px
16px
10px
10px
;
}
&
:hover
{
background
:
#aa1940
;
.con_desc
{
color
:
#f9f8f8
;
}
}
.con_img
{
width
:
160px
;
height
:
110px
;
}
.con_desc
{
color
:
#f9f8f8
;
margin-left
:
16px
;
white-space
:
nowrap
;
text-align
:
center
;
width
:
140px
;
font-size
:
14px
;
line-height
:
18px
;
color
:
#333333
;
}
}
.con_img
{
width
:
160px
;
height
:
110px
;
}
.con_desc
{
margin-left
:
16px
;
white-space
:
nowrap
;
text-align
:
center
;
width
:
140px
;
font-size
:
14px
;
line-height
:
18px
;
color
:
#333333
;
li
:nth-child
(
2
)
{
margin-left
:
30px
;
}
}
li
:nth-child
(
2
)
{
margin-left
:
4
0px
;
}
li
:last-child
{
margin
-right
:
37
px
;
.line1
{
width
:
0px
;
height
:
129px
;
border
:
1px
dashed
#c4c4c4
;
margin
:
30px
35
px
;
}
}
.left_con2
{
padding-left
:
35px
;
border-left
:
1px
dashed
#c4c4c4
;
}
.con_left
:nth-child
(
1
)
{
.left_tit
{
margin-left
:
275px
;
}
}
.con_left1
:nth-child
(
1
)
{
.left_tit
{
margin-left
:
296px
;
}
}
.con_left
:nth-child
(
2
)
{
align-items
:
center
;
// .left_tit {
// margin-left: 188px;
// }
}
// .con_left:nth-child(3) {
// .left_tit {
// margin-left: 296px;
// }
// }
}
}
</
style
>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论