Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
984521f3
提交
984521f3
authored
9月 20, 2022
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: update
上级
d7c15e69
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
38 行增加
和
465 行删除
+38
-465
Card.vue
components/Card.vue
+5
-17
projectFeatures.vue
components/home/projectFeatures.vue
+9
-311
projectPosition.vue
components/home/projectPosition.vue
+19
-132
Head.vue
components/layout/pc/Head.vue
+4
-4
zh-CN.js
langs/zh-CN.js
+1
-1
没有找到文件。
components/Card.vue
浏览文件 @
984521f3
...
@@ -22,15 +22,11 @@ export default {
...
@@ -22,15 +22,11 @@ export default {
</
script
>
</
script
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
.is-pc
{
.is-pc
{
.card
{
// margin: 0.2rem 0.15rem;
}
.card-hd
{
.card-hd
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
justify-content
:
space-between
;
justify-content
:
space-between
;
// margin-bottom: 0.15rem;
}
}
.card-hd__title
{
.card-hd__title
{
flex
:
1
;
flex
:
1
;
...
@@ -45,13 +41,8 @@ export default {
...
@@ -45,13 +41,8 @@ export default {
color
:
#9b9b9b
;
color
:
#9b9b9b
;
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.card-bd
{
}
}
}
.is-h5
{
.is-h5
{
.card
{
margin
:
0
.2rem
0
.15rem
;
}
.card-hd
{
.card-hd
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
...
@@ -60,17 +51,14 @@ export default {
...
@@ -60,17 +51,14 @@ export default {
}
}
.card-hd__title
{
.card-hd__title
{
flex
:
1
;
flex
:
1
;
border-left
:
0
.03rem
solid
#aa1941
;
font-size
:
0
.14rem
;
padding-left
:
0
.05rem
;
font-size
:
0
.17rem
;
font-weight
:
bold
;
font-weight
:
bold
;
line-height
:
1
;
line-height
:
0
.28rem
;
color
:
#424242
;
}
}
.card-hd__aside
{
.card-hd__aside
{
font-size
:
0
.1rem
;
font-size
:
0
.1rem
;
color
:
#9b9b9b
;
color
:
#9b9b9b
;
}
}
.card-bd
{
}
}
}
</
style
>
</
style
>
components/home/projectFeatures.vue
浏览文件 @
984521f3
<
template
>
<
template
>
<div
class=
"service-content max-width-center"
>
<div
class=
"max-width-center"
>
<div
:class=
"isMobile ? 'is-h5' : 'is-pc'"
>
<card
:title=
"$t('home.project.title')"
>
<card
:title=
"$t('home.project.title')"
v-if=
"!isMobile"
>
<!--
<ul
class=
"nav-content"
>
<li
v-for=
"(item, index) in data"
:key=
"index"
>
<img
:src=
"item.icon"
class=
"icon"
/>
<img
v-if=
"!isMobile"
:src=
"item.iconActive"
class=
"icon-active"
/>
<div
class=
"text"
v-html=
"item.text"
></div>
</li>
</ul>
-->
<!--
<div
class=
"swiperOptions"
@
mouseenter=
"swiperStop"
@
mouseleave=
"swiperStart"
>
<div
v-swiper:mySwiper=
"swiperOption"
ref=
"mySwiper"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-slide"
v-for=
"(item, index) in listData"
:key=
"index"
>
<div
class=
"item_media"
>
<img
:src=
"item.web_img_uri"
/>
</div>
<div
class=
"item_desc"
>
<div
class=
"item_desc_tit"
>
{{
item
.
item_desc_tit
}}
</div>
<div
class=
"item_desc_con"
>
{{
item
.
item_desc_con
}}
</div>
</div>
</div>
</div>
<div
class=
"prev-button"
v-if=
"!isMobile"
></div>
<div
class=
"next-button"
v-if=
"!isMobile"
></div>
</div>
</div>
-->
<div
class=
"card-list"
>
<div
class=
"card-list"
>
<div
class=
"card-item"
v-for=
"(item, index) in listData"
:key=
"index"
>
<div
class=
"card-item"
v-for=
"(item, index) in listData"
:key=
"index"
>
<div
class=
"item_media"
>
<div
class=
"item_media"
>
...
@@ -38,38 +13,6 @@
...
@@ -38,38 +13,6 @@
</div>
</div>
</div>
</div>
</card>
</card>
<div
v-else
>
<div
class=
"tit"
v-if=
"isMobile"
>
项目优势
</div>
<!--
<div
class=
"swiperOptions"
@
mouseenter=
"swiperStop"
@
mouseleave=
"swiperStart"
>
<div
v-swiper:mySwiper=
"swiperOption"
ref=
"mySwiper"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-slide"
v-for=
"(item, index) in listData"
:key=
"index"
>
<img
:src=
"item.web_img_uri"
/>
<div
class=
"item_desc"
>
<div
class=
"item_desc_tit"
>
{{
item
.
item_desc_tit
}}
</div>
<div
class=
"item_desc_con"
>
{{
item
.
item_desc_con
}}
</div>
</div>
</div>
</div>
<div
class=
"prev-button"
v-if=
"!isMobile"
></div>
<div
class=
"next-button"
v-if=
"!isMobile"
></div>
</div>
</div>
-->
<div
class=
"card-list-outer"
>
<div
class=
"card-list"
>
<div
class=
"card-item"
v-for=
"(item, index) in listData"
:key=
"index"
>
<div
class=
"item_media"
>
<img
:src=
"item.web_img_uri"
/>
</div>
<div
class=
"item_desc"
>
<div
class=
"item_desc_tit"
>
{{
item
.
item_desc_tit
}}
</div>
<div
class=
"item_desc_con"
v-html=
"item.item_desc_con"
></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -163,121 +106,12 @@ export default {
...
@@ -163,121 +106,12 @@ export default {
]
]
}
}
},
},
methods
:
{
methods
:
{}
goPage
(
path
)
{
if
(
path
===
''
)
{
// this.$message('暂未开通,尽请期待。')
return
}
window
.
open
(
path
)
}
},
mounted
()
{
// console.log(this.isMobile)
},
computed
:
{
isMobile
()
{
return
this
.
$store
.
state
.
isMobile
},
swiper
()
{
return
this
.
$refs
.
mySwiper
.
swiper
}
},
methods
:
{
swiperStop
()
{
this
.
swiper
.
autoplay
.
stop
()
},
swiperStart
()
{
this
.
swiper
.
autoplay
.
start
()
}
}
}
}
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.is-pc
{
.is-pc
{
.swiperOptions
{
width
:
1200px
;
position
:
relative
;
margin-top
:
17px
;
.swiper-wrapper
{
width
:
100%
;
display
:
flex
;
.swiper-slide
{
width
:
250px
;
height
:
569px
;
overflow
:
hidden
;
position
:
relative
;
.item_media
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
left
:
0
;
top
:
0
;
img
{
transition
:
0
.3s
;
width
:
100%
;
height
:
100%
;
}
&
:after
{
content
:
''
;
display
:
block
;
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0
.7
);
}
}
.item_desc
{
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
250px
;
height
:
349px
;
// background-color: #ededed;
opacity
:
1
;
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
flex-start
;
flex-direction
:
column
;
padding
:
34px
37px
53px
33px
;
// transform-origin: bottom;
transform
:
translateY
(
450px
);
transition
:
0
.3s
;
.item_desc_tit
{
font-size
:
20px
;
font-weight
:
400
;
color
:
#fff
;
margin-top
:
34px
;
}
.item_desc_con
{
font-size
:
16px
;
font-weight
:
300
;
color
:
#fff
;
margin-top
:
34px
;
line-height
:
32px
;
}
}
}
.swiper-slide
:hover
{
.item_media
{
img
{
transform
:
scale
(
1
.1
);
}
}
.item_desc
{
// background-color: #fff;
transform
:
translateY
(
160px
);
.item_desc_tit
{
border-bottom
:
1px
solid
#f3f4f4
;
}
}
}
}
}
.card-list
{
.card-list
{
width
:
1200px
;
width
:
1200px
;
position
:
relative
;
position
:
relative
;
...
@@ -395,129 +229,28 @@ export default {
...
@@ -395,129 +229,28 @@ export default {
}
}
}
}
}
}
.service-content
{
padding-top
:
64px
;
.nav-content
{
display
:
flex
;
justify-content
:
flex-start
;
padding-top
:
15px
;
li
{
width
:
224px
;
height
:
230px
;
padding-top
:
53px
;
margin-right
:
20px
;
box-sizing
:
border-box
;
background
:
#f9f8f8
;
// background: #fff;
// box-shadow: 0px 4px 38px rgba(142, 30, 34, 0.41);
cursor
:
pointer
;
transition
:
all
0
.3s
;
img
{
width
:
80px
;
height
:
80px
;
display
:
block
;
margin
:
0
auto
;
}
.icon-active
{
display
:
none
;
}
&
:hover
{
background
:
#aa1941
;
box-shadow
:
0px
4px
20px
rgba
(
142
,
30
,
34
,
0
.41
);
.text
{
color
:
#fff
;
}
.icon
{
display
:
none
;
}
.icon-active
{
display
:
block
;
}
}
.text
{
font-size
:
18px
;
color
:
#666666
;
margin-top
:
20px
;
text-align
:
center
;
font-weight
:
400
;
}
}
}
}
.max-width-center
{
.max-width-center
{
width
:
1212px
;
width
:
1212px
;
margin
:
0
auto
;
margin
:
64px
auto
0
;
}
}
}
}
.is-h5
{
.is-h5
{
.tit
{
.max-width-center
{
font-size
:
0
.14rem
;
padding
:
0
.2rem
0
.3rem
0
.2rem
0
.3rem
;
font-weight
:
bold
;
line-height
:
0
.28rem
;
color
:
#424242
;
}
.swiperOptions
{
position
:
relative
;
margin-top
:
0
.08rem
;
.swiper-wrapper
{
width
:
100%
;
display
:
flex
;
.swiper-slide
{
width
:
1
.93rem
;
height
:
4rem
;
img
{
width
:
1
.93rem
;
}
.item_desc
{
width
:
1
.93rem
;
height
:
2
.73rem
;
background-color
:
#ededed
;
opacity
:
1
;
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
flex-start
;
flex-direction
:
column
;
padding
:
0
.17rem
0
.18rem
0
0
.17rem
;
.item_desc_tit
{
font-size
:
0
.1rem
;
font-weight
:
400
;
color
:
#333333
;
margin-top
:
0
.17rem
;
white-space
:
nowrap
;
}
.item_desc_con
{
font-size
:
0
.08rem
;
font-weight
:
300
;
color
:
#666666
;
margin-top
:
0
.17rem
;
line-height
:
0
.16rem
;
}
}
.item_desc
:hover
{
background-color
:
#fff
;
.item_desc_tit
{
border-bottom
:
1px
solid
#434343
;
}
}
}
}
}
.card-list-outer
{
overflow-x
:
auto
;
}
}
.card-list
{
.card-list
{
width
:
12rem
;
overflow-x
:
auto
;
position
:
relative
;
position
:
relative
;
margin-top
:
17px
;
margin-top
:
17px
;
display
:
flex
;
display
:
flex
;
justify-content
:
space-around
;
justify-content
:
space-around
;
.card-item
{
.card-item
{
width
:
1
.93rem
;
margin-right
:
10px
;
flex
:
0
0
1
.93rem
;
height
:
2
.75rem
;
height
:
2
.75rem
;
overflow
:
hidden
;
overflow
:
hidden
;
position
:
relative
;
position
:
relative
;
float
:
left
;
.item_media
{
.item_media
{
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
...
@@ -576,40 +309,5 @@ export default {
...
@@ -576,40 +309,5 @@ export default {
}
}
}
}
}
}
.service-content
{
padding-left
:
0
.32rem
;
padding-right
:
0
.32rem
;
.tit
{
font-size
:
0
.14rem
;
font-weight
:
bold
;
line-height
:
0
.28rem
;
color
:
#424242
;
}
ul
{
display
:
flex
;
overflow-x
:
scroll
;
-webkit-overflow-scrolling
:
touch
;
}
li
{
min-width
:
1
.15rem
;
background
:
#ffffff
;
margin-right
:
0
.1rem
;
padding-top
:
0
.11rem
;
img
{
width
:
0
.4rem
;
height
:
0
.4rem
;
display
:
block
;
margin
:
0
auto
;
}
.text
{
font-size
:
0
.1rem
;
line-height
:
0
.16rem
;
color
:
#666666
;
padding-top
:
0
.05rem
;
text-align
:
center
;
padding-bottom
:
0
.1rem
;
}
}
}
}
}
</
style
>
</
style
>
components/home/projectPosition.vue
浏览文件 @
984521f3
<
template
>
<
template
>
<div
:class=
"isMobile ? 'is-h5' : 'is-pc'"
>
<div
class=
"max-width-center"
>
<div
class=
"service-content max-width-center"
>
<template
v-if=
"!isMobile"
>
<card
title=
"学校简介"
>
<card
title=
"学校简介"
>
<div
class=
"desc"
>
<div
class=
"desc"
>
<p>
<p>
纽约州立大学石溪分校,又名石溪大学。坐落于纽约市风景区长岛,紧邻世界500强聚集地华尔街。全球大学排名前1%、2023
纽约州立大学石溪分校,又名石溪大学。坐落于纽约市风景区长岛,紧邻世界500强聚集地华尔街。全球大学排名前1%、2023
U.S. News全美排名77、2021 QS全美排名39、培养出7位诺贝尔奖得主及37位科学院院士,享有“ 公立常春藤
U.S.News全美排名77、2021
”的美誉。石溪大学是美国著名的公立研究型大学,纽约州排名最高的公立大学。著名核物理学家、诺贝尔物理奖获得者杨振宁在该校执教37年。诺贝尔经济学奖得主罗伯特·奥曼在该校任教并创建博弈论中心。斯坦福大学校长、纽约时报CEO、瑞士银行CTO等大量优秀校友毕业于石溪大学。石溪大学也是世界第一张核磁共振图像的诞生地。
QS全美排名39、培养出7位诺贝尔奖得主及37位科学院院士,享有“公立常春藤
”的美誉。石溪大学是美国著名的公立研究型大学,纽约州排名最高的公立大学。著名核物理学家、诺贝尔物理奖获得者杨振宁在该校执教37年。诺贝尔经济学奖得主罗伯特·奥曼在该校任教并创建博弈论中心。斯坦福大学校长、纽约时报CEO、瑞士银行CTO等大量优秀校友毕业于石溪大学。石溪大学也是世界第一张核磁共振图像的诞生地。
</p>
</p>
</div>
</div>
</card>
</card>
<card
title=
"项目简介"
v-if=
"!isMobile"
style=
"margin-top:60px"
>
<card
title=
"项目简介"
style=
"margin-top: 64px;"
>
<div
class=
"desc"
>
<p>
石溪大学金融硕士保研项目的全称是Center of Entrepreneurial Finance-Conditional Admission Process to Master
of Science in
Finance,是石溪大学为金融硕士录取开设的有条件特别录取通道,简称为“CEF”。项目给予大三、大四在读的优秀本科生或往届生提前获得石溪大学金融硕士录取的机会,包含三大模块:
</p>
<br
/>
<h4>
01 校方直录
</h4>
<p>
经报名材料审核与面试通过后,将直接收到校方(stonybrook.edu)保研项目录取通知书
</p>
<br
/>
<h4>
02 免试入学(校方课程替代)
</h4>
<p>
通过学习石溪大学与保研项目中国招生与教学中心提供的英语强化课程,可免试托福;通过接受石溪大学商学院教授在量化金融(Quantitative
Finance)等领域提供的科研训练,鼓励学生以增强科研能力替代应试,减少商学院研究生入学考试(GMAT)对学生学习和科研的干扰。
</p>
<br
/>
<h4>
03 提前读研(减轻负担)
</h4>
<p>
通过学习包含《投资学》在内的四门硕士先修课程,可为跨专业申请金融硕士的同学提供适应金融专业学习的基础,也帮助本科金融专业的同学更好地衔接本、硕学习。学习《金融概率与统计》与《金融学》两门石溪大学金融硕士学分课程。在本科期间提前修读硕士学分,减轻金融硕士的学业负担。
</p>
<br
/>
<p>
石溪大学商学院官方唯一授权清控紫荆教育负责CEF项目在中国的招生与教学,详见https://www.stonybrook.edu/commcms/cef/CEF-Workshop/Collaboration(石溪大学官网
项目说明)。
</p>
</div>
</card>
</
template
>
<
template
v-else
>
<div
class=
"tit"
>
项目简介
</div>
<div
class=
"desc"
>
<p>
纽约州立大学石溪分校,又名石溪大学。坐落于纽约市风景区长岛,紧邻世界500强聚集地华尔街。全球大学排名前1%、2023
U.S.
News全美排名77、2021QS全美排名39、培养出7位诺贝尔奖得主及37位科学院院士,享有“公立常春藤”的美誉。石溪大学是美国著名的公立研究型大学,纽约州排名最高的公立大学。著名核物理学家、诺贝尔物理奖获得者杨振宁在该校执教37年。诺贝尔经济学奖得主罗伯特·奥曼在该校任教并创建博弈论中心。斯坦福大学校长、纽约时报CEO、瑞士银行CTO等大量优秀校友毕业于石溪大学。石溪大学也是世界第一张核磁共振图像的诞生地。
</p>
</div>
<div
class=
"tit"
style=
"margin-top:0.2rem;"
>
项目简介
</div>
<div
class=
"desc"
>
<div
class=
"desc"
>
<p>
<p>
石溪大学金融硕士保研项目的全称是Center of Entrepreneurial Finance-Conditional Admission Process to Master of
石溪大学金融硕士保研项目的全称是Center of Entrepreneurial Finance-Conditional Admission Process to Master of
...
@@ -63,13 +17,13 @@
...
@@ -63,13 +17,13 @@
Finance,是石溪大学为金融硕士录取开设的有条件特别录取通道,简称为“CEF”。项目给予大三、大四在读的优秀本科生或往届生提前获得石溪大学金融硕士录取的机会,包含三大模块:
Finance,是石溪大学为金融硕士录取开设的有条件特别录取通道,简称为“CEF”。项目给予大三、大四在读的优秀本科生或往届生提前获得石溪大学金融硕士录取的机会,包含三大模块:
</p>
</p>
<br
/>
<br
/>
<h4>
01
校方直录
</h4>
<h4>
1、
校方直录
</h4>
<p>
<p>
经报名材料审核与面试通过后,将直接收到校方(stonybrook.edu)保研项目录取通知书
经报名材料审核与面试通过后,将直接收到校方(stonybrook.edu)保研项目录取通知书。
</p>
</p>
<br
/>
<br
/>
<h4>
<h4>
02
免试入学(校方课程替代)
2、
免试入学(校方课程替代)
</h4>
</h4>
<p>
<p>
通过学习石溪大学与保研项目中国招生与教学中心提供的英语强化课程,可免试托福;通过接受石溪大学商学院教授在量化金融(Quantitative
通过学习石溪大学与保研项目中国招生与教学中心提供的英语强化课程,可免试托福;通过接受石溪大学商学院教授在量化金融(Quantitative
...
@@ -77,19 +31,19 @@
...
@@ -77,19 +31,19 @@
</p>
</p>
<br
/>
<br
/>
<h4>
<h4>
03
提前读研(减轻负担)
3、
提前读研(减轻负担)
</h4>
</h4>
<p>
<p>
通过学习包含《投资学》在内的四门硕士先修课程,可为跨专业申请金融硕士的同学提供适应金融专业学习的基础,也帮助本科金融专业的同学更好地衔接本、硕学习。学习《金融概率与统计》与《金融学》两门石溪大学金融硕士学分课程。在本科期间提前修读硕士学分,减轻金融硕士的学业负担。
通过学习包含《投资学》在内的四门硕士先修课程,可为跨专业申请金融硕士的同学提供适应金融专业学习的基础,也帮助本科金融专业的同学更好地衔接本、硕学习。学习《金融概率与统计》与《金融学》两门石溪大学金融硕士学分课程。在本科期间提前修读硕士学分,减轻金融硕士的学业负担。
</p>
</p>
<br
/>
<p>
<p>
石溪大学商学院官方唯一授权清控紫荆教育负责CEF项目在中国的招生与教学,详见https://www.stonybrook.edu/commcms/cef/CEF-Workshop/Collaboration(石溪大学官网
石溪大学商学院官方唯一授权清控紫荆教育负责CEF项目在中国的招生与教学,详见
<a
项目说明)。
href=
"https://www.stonybrook.edu/commcms/cef/CEF-Workshop/Collaboration"
>
https://www.stonybrook.edu/commcms/cef/CEF-Workshop/Collaboration
</a
>
(石溪大学官网项目说明)。
</p>
</p>
</div>
</div>
</
template
>
</card>
</div>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -97,66 +51,11 @@ import Card from '@/components/Card'
...
@@ -97,66 +51,11 @@ import Card from '@/components/Card'
import
AppLink
from
'@/components/Link'
import
AppLink
from
'@/components/Link'
export
default
{
export
default
{
name
:
'projectFeatures'
,
name
:
'projectFeatures'
,
components
:
{
components
:
{
AppLink
,
Card
},
AppLink
,
Card
},
data
()
{
data
()
{
return
{
return
{}
titleParams
:
{
name
:
this
.
$t
(
'home.project.title'
)
}
// data: [
// {
// icon: 'https://webapp-pub.ezijing.com/project/marywood/img12.png',
// iconActive: 'https://webapp-pub.ezijing.com/project/marywood/img11.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT1') : this.$t('home.project.pc.itemT5')
// },
// {
// icon: 'https://webapp-pub.ezijing.com/project/marywood/img22.png',
// iconActive: 'https://webapp-pub.ezijing.com/project/marywood/img21.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT1') : this.$t('home.project.pc.itemT6')
// },
// {
// icon: 'https://webapp-pub.ezijing.com/project/marywood/img32.png',
// iconActive: 'https://webapp-pub.ezijing.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.ezijing.com/project/marywood/img42.png',
// iconActive: 'https://webapp-pub.ezijing.com/project/marywood/img411.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT2') : this.$t('home.project.pc.itemT8')
// },
// {
// icon: 'https://webapp-pub.ezijing.com/project/marywood/img52.png',
// iconActive: 'https://webapp-pub.ezijing.com/project/marywood/img51.png',
// text: this.$store.state.isMobile ? this.$t('home.project.h5.itemT3') : this.$t('home.project.pc.itemT9')
// }
// ]
}
},
computed
:
{
isMobile
()
{
return
this
.
$store
.
state
.
isMobile
}
},
methods
:
{
goPage
(
path
)
{
if
(
path
===
''
)
{
// this.$message('暂未开通,尽请期待。')
return
}
window
.
open
(
path
)
}
},
mounted
()
{
console
.
log
(
this
.
isMobile
)
},
},
computed
:
{
methods
:
{}
isMobile
()
{
return
this
.
$store
.
state
.
isMobile
}
}
}
}
</
script
>
</
script
>
...
@@ -166,42 +65,30 @@ export default {
...
@@ -166,42 +65,30 @@ export default {
width
:
1212px
;
width
:
1212px
;
margin
:
0
auto
;
margin
:
0
auto
;
padding-top
:
168px
;
padding-top
:
168px
;
}
.desc
{
.desc
{
// text-align: justify;
text-align
:
justify
;
// white-space: pre-line;
font-size
:
20px
;
font-size
:
20px
;
line-height
:
30px
;
line-height
:
30px
;
font-weight
:
400
;
font-weight
:
400
;
padding
:
28px
30px
0
30px
;
padding
:
28px
30px
0
30px
;
p
{
p
{
// text-indent: 2em;
color
:
#666666
;
color
:
#666666
;
line-height
:
36px
;
line-height
:
36px
;
}
}
}
}
}
}
}
.is-h5
{
.is-h5
{
.max-width-center
{
.max-width-center
{
// margin: 0.39rem auto;
padding
:
0
.2rem
0
.3rem
0
.2rem
0
.3rem
;
padding
:
0
.2rem
0
.3rem
0
.2rem
0
.3rem
;
}
}
.tit
{
font-size
:
0
.14rem
;
font-weight
:
bold
;
line-height
:
0
.28rem
;
color
:
#424242
;
}
.desc
{
.desc
{
text-align
:
justify
;
text-align
:
justify
;
// white-space: pre-line;
font-size
:
0
.12rem
;
font-size
:
0
.12rem
;
font-weight
:
400
;
font-weight
:
400
;
line-height
:
0
.2rem
;
line-height
:
0
.2rem
;
color
:
#666666
;
color
:
#666666
;
// p {
// // text-indent: 2em;
// }
}
}
}
}
</
style
>
</
style
>
components/layout/pc/Head.vue
浏览文件 @
984521f3
...
@@ -162,13 +162,13 @@ li {
...
@@ -162,13 +162,13 @@ li {
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.login
{
.login
{
background
:
#aa1941
;
color
:
#fff
;
}
.register
{
color
:
#333333
;
color
:
#333333
;
border
:
1px
solid
#eaeaea
;
border
:
1px
solid
#eaeaea
;
}
}
.register
{
background
:
#aa1941
;
color
:
#fff
;
}
}
}
.language
{
.language
{
margin-left
:
24px
;
margin-left
:
24px
;
...
...
langs/zh-CN.js
浏览文件 @
984521f3
...
@@ -3,7 +3,7 @@ export default {
...
@@ -3,7 +3,7 @@ export default {
menu
:
{
menu
:
{
out
:
'退出'
,
out
:
'退出'
,
fastLogin
:
'快速登录'
,
fastLogin
:
'快速登录'
,
register
:
'
注册
'
,
register
:
'
马上报名
'
,
project
:
'项目介绍'
,
project
:
'项目介绍'
,
course
:
'项目优势'
,
course
:
'项目优势'
,
school
:
'院校介绍'
,
school
:
'院校介绍'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论