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 个修改的文件
包含
101 行增加
和
62 行删除
+101
-62
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
+86
-53
没有找到文件。
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>
<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=
"(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>
<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
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>
</div>
</div>
<div
class=
"content_top"
>
<h6
class=
"top_title"
>
留学深造
</h6>
<div
class=
"top_con"
>
<div
class=
"con_left"
>
<div
class=
"left_tit"
>
— 硕士直通车 —
</div>
<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=
"(item, index) in masterAbroadList
"
:key=
"index"
>
<AppLink
:data=
"item
"
>
<li
v-for=
"(it, index) in item.children
"
:key=
"index"
>
<AppLink
:data=
"it
"
>
<div
class=
"con"
>
<img
:src=
"item
.img"
alt=
""
class=
"con_img"
/>
<div
class=
"con_desc"
v-html=
"item
.desc"
></div>
<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
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>
</div>
</div>
...
...
@@ -68,7 +50,11 @@ export default {
components
:
{
AppLink
},
data
()
{
return
{
masterList
:
[
degreeList
:
[
{
title
:
'— 硕士 —'
,
isLine
:
true
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/master_med1.png'
,
desc
:
'教育学硕士(儿童)<br/>MED'
,
...
...
@@ -89,8 +75,13 @@ export default {
desc
:
'教育学硕士(家庭) <br/>MED'
,
href
:
'https://cuw.ezijing.com/index'
}
],
mbaList
:
[
]
},
{
title
:
'— MBA —'
,
isLine
:
false
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/mba1.png'
,
desc
:
'数字领导力方向<br/>MBA'
,
...
...
@@ -106,8 +97,15 @@ export default {
desc
:
'餐饮管理方向<br/>MBA'
,
href
:
'https://caas.ezijing.com/'
}
]
}
],
masterAbroadList
:
[
abroadList
:
[
{
title
:
'— 硕士直通车 —'
,
isLine
:
true
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad1.png'
,
desc
:
'纽约州立大学石溪分校<br/>金融学硕士保研项目'
,
...
...
@@ -118,8 +116,12 @@ export default {
desc
:
'斯蒂文斯理工学院<br/>工程管理硕士保研项目'
,
href
:
'https://sit-plus.ezijing.com/'
}
],
doctorList
:
[
]
},
{
title
:
'— 博士 —'
,
isLine
:
false
,
children
:
[
{
img
:
'https://webapp-pub.ezijing.com/www/pc/home/personal/abroad3.png'
,
desc
:
'加州浸会大学<br/>工商管理博士项目DBA'
,
...
...
@@ -127,6 +129,8 @@ export default {
}
]
}
]
}
}
}
</
script
>
...
...
@@ -155,27 +159,29 @@ export default {
height
:
192px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
//
align-items: center;
.left_tit
{
font-size
:
16px
;
color
:
#000000
;
}
.left_content
{
display
:
flex
;
.left_con
{
display
:
flex
;
justify-content
:
space-around
;
margin-top
:
1
0px
;
margin-top
:
3
0px
;
li
{
width
:
148px
;
height
:
156px
;
opacity
:
1
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
padding-top
:
10px
;
cursor
:
pointer
;
&
:hover
{
background
:
#aa1940
;
padding-top
:
10px
;
padding-bottom
:
14px
;
margin-top
:
-10px
;
.con_desc
{
color
:
#f9f8f8
;
}
...
...
@@ -192,10 +198,16 @@ export default {
color
:
#333333
;
}
}
li
:last-child
{
margin-right
:
37
px
;
li
:not
(
:last-child
)
{
margin-right
:
10
px
;
}
}
.line
{
width
:
0px
;
height
:
129px
;
border
:
1px
dashed
#c4c4c4
;
margin
:
30px
25px
5px
25px
;
}
.left_con1
{
display
:
flex
;
...
...
@@ -235,17 +247,38 @@ export default {
}
}
li
:nth-child
(
2
)
{
margin-left
:
40px
;
margin-left
:
30px
;
}
}
.line1
{
width
:
0px
;
height
:
129px
;
border
:
1px
dashed
#c4c4c4
;
margin
:
30px
35px
;
}
li
:last-child
{
margin-right
:
37px
;
}
}
.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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论