Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-fi
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-fi
Commits
5af3c05b
提交
5af3c05b
authored
10月 29, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore:update
上级
e4ce1bc6
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
620 行增加
和
483 行删除
+620
-483
logo.png
src/assets/images/logo.png
+0
-0
logo_white.png
src/assets/images/logo_white.png
+0
-0
Header.vue
src/components/layout/Header.vue
+1
-1
Banner.vue
src/modules/home/components/Banner.vue
+41
-13
Course.vue
src/modules/home/components/Course.vue
+223
-122
ExamProcess.vue
src/modules/home/components/ExamProcess.vue
+53
-0
Main.vue
src/modules/home/components/Main.vue
+148
-28
ProjectSystem.vue
src/modules/home/components/ProjectSystem.vue
+68
-306
Teacher.vue
src/modules/home/components/Teacher.vue
+76
-9
Index.vue
src/modules/home/views/Index.vue
+10
-4
没有找到文件。
src/assets/images/logo.png
查看替换文件 @
e4ce1bc6
浏览文件 @
5af3c05b
19.8 KB
|
W:
|
H:
10.8 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/assets/images/logo_white.png
查看替换文件 @
e4ce1bc6
浏览文件 @
5af3c05b
17.0 KB
|
W:
|
H:
8.8 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/components/layout/Header.vue
浏览文件 @
5af3c05b
...
@@ -110,7 +110,7 @@ const isScrolled = computed(() => {
...
@@ -110,7 +110,7 @@ const isScrolled = computed(() => {
}
}
.app-header-right
{
.app-header-right
{
display
:
flex
;
display
:
flex
;
color
:
#
666
;
color
:
#
333
;
.app-header-logout
{
.app-header-logout
{
background
:
url('https://webapp-pub.ezijing.com/project/saas/logout.png')
no-repeat
left
center
;
background
:
url('https://webapp-pub.ezijing.com/project/saas/logout.png')
no-repeat
left
center
;
...
...
src/modules/home/components/Banner.vue
浏览文件 @
5af3c05b
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
Swiper
,
SwiperSlide
}
from
'swiper/vue'
//
import { Swiper, SwiperSlide } from 'swiper/vue'
import
'swiper/css'
//
import 'swiper/css'
const
list
=
[{
url
:
'https://webapp-pub.ezijing.com/project_online/fi
/banner.jpg'
}]
// const list = [{ url: 'https://webapp-pub.ezijing.com/project_online/paa
/banner.jpg' }]
</
script
>
</
script
>
<
template
>
<
template
>
<div
class=
"banner"
>
<div
class=
"banner"
>
<Swiper
autoplay
>
<!--
<Swiper
autoplay
>
<SwiperSlide
v-for=
"(item, index) in list"
:key=
"index"
>
<SwiperSlide
v-for=
"(item, index) in list"
:key=
"index"
>
-->
<img
:src=
"item.url"
/>
<div
class=
"banner_con"
>
</SwiperSlide>
<div
class=
"banner_tit"
>
PAA私人资产分析师
</div>
</Swiper>
<div
class=
"banner_desc"
>
PAA,即私人资产分析师(Private Assets
Analyst)认证体系是由隶属于清控紫荆教育(以清华大学五道口金融学院相关知识产权创设而成)的清控紫荆金融保险研究院和清控紫荆金融保险学院,针对金融保险企业绩优营销员、保险公司TOP
AGENT、TEAM-LEADER等受众研发设计的教学培训认证体系。
</div>
</div>
<!--
</SwiperSlide>
</Swiper>
-->
</div>
</div>
</
template
>
</
template
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
.banner
{
.banner
{
img
{
background
:
url('https://webapp-pub.ezijing.com/project_online/paa/banner.jpg')
no-repeat
center
;
width
:
100%
;
background-size
:
100%
100%
;
height
:
700px
;
width
:
100%
;
object-fit
:
cover
;
object-fit
:
cover
;
object-position
:
center
;
object-position
:
center
;
box-sizing
:
border-box
;
.banner_con
{
width
:
1200px
;
margin
:
auto
;
text-align
:
left
;
padding
:
253px
0
179px
0
;
.banner_tit
{
font-size
:
40px
;
font-weight
:
bold
;
line-height
:
50px
;
color
:
#ffffff
;
}
.banner_desc
{
margin-top
:
63px
;
width
:
650px
;
font-size
:
22px
;
font-weight
:
400
;
line-height
:
46px
;
color
:
#ffffff
;
}
}
}
}
}
</
style
>
</
style
>
src/modules/home/components/Course.vue
浏览文件 @
5af3c05b
<
script
setup
>
<
script
lang=
"ts"
setup
>
const
list
=
[
const
courseList
:
Array
<
{
tit
:
string
;
desc
:
string
;
img
:
string
}
>
=
[
{
{
tit
le
:
'案例解决方案
'
,
tit
:
'PAAP(I)
'
,
desc
:
'
某某某某某某某某某某某某某某某莫某某某某…
'
,
desc
:
'
PAAP(Ⅰ)即通过私人权属资产全面预算的系统学习,具备完成私人资产分析所需要的系统源点知识的底层逻辑,精确盘点私人资产,建立私人资产分析的多维模型。
'
,
content
:
'《企业风险管理》<br/>《企业风险管理》<br/>公司金融顾问与销售<br/>《企业风险管理》
'
img
:
'https://webapp-pub.ezijing.com/project_online/paa/course_set1.png
'
},
},
{
{
title
:
'案例解决方案'
,
tit
:
'PAAP(II)'
,
desc
:
'某某某某某某某某某某某某某某某莫某某某某…'
,
desc
:
'PAAP(Ⅱ)是学员通过深入学习资产分析的模型,并能熟练地通过模型,结合不同维度客户资产情况,准确分析形成并出具私人资产分析报告。'
,
content
:
'《企业风险管理》<br/>《企业风险管理》<br/>公司金融顾问与销售<br/>《企业风险管理》'
img
:
'https://webapp-pub.ezijing.com/project_online/paa/course_set2.png'
},
{
title
:
'案例解决方案'
,
desc
:
'某某某某某某某某某某某某某某某莫某某某某…'
,
content
:
'《企业风险管理》<br/>《企业风险管理》<br/>公司金融顾问与销售<br/>《企业风险管理》'
},
{
title
:
'案例解决方案'
,
desc
:
'某某某某某某某某某某某某某某某莫某某某某…'
,
content
:
'《企业风险管理》<br/>《企业风险管理》<br/>公司金融顾问与销售<br/>《企业风险管理》'
}
}
]
]
</
script
>
</
script
>
<
template
>
<
template
>
<section
class=
"section"
>
<div
class=
"main"
>
<div
class=
"section-title"
>
<div
class=
"main_con"
id=
"product"
>
<em
class=
"section-title_dot"
></em>
<div
class=
"con_tit"
>
<h2>
定制专属类课程
</h2>
<img
src=
"https://webapp-pub.ezijing.com/project_online/paa/course_tit_icon.png"
class=
"tit_icon icon1"
/>
<em
class=
"section-title_dot"
></em>
<div
class=
"tit_txt"
>
课程介绍
</div>
</div>
<img
src=
"https://webapp-pub.ezijing.com/project_online/paa/course_tit_icon.png"
class=
"tit_icon icon2"
/>
<div
class=
"topic"
>
</div>
<p>
<div
class=
"con_tab"
>
针对不同人才类型的培养需求,采用“线上+线下”的教学模式,并提供定制化专业服务与个性化的在线学习解决方案,帮助从业者提升工作所需的业务技能,强化综合竞争力。
<div
class=
"tab_con con1"
>
</p>
<div
class=
"con_cn"
>
私人资产分析规划师
</div>
</div>
<div
class=
"con_en"
>
Private Assets Analysis Planner
</div>
<div
class=
"case-list"
>
<div
class=
"h"
></div>
<div
class=
"case-item"
v-for=
"(item, index) in list"
:key=
"index"
>
</div>
<h3>
{{
item
.
title
}}
</h3>
<div
class=
"tab_con con2"
>
<div
class=
"line"
></div>
<div
class=
"con_cn"
>
高级私人资产分析管理师
</div>
<div
class=
"desc"
>
{{
item
.
desc
}}
</div>
<div
class=
"con_en"
>
Senior Private Asset Analysis Manager
</div>
<div
class=
"cover"
><div
class=
"inner"
v-html=
"item.content"
></div></div>
</div>
</div>
<div
class=
"con_content"
>
<div
class=
"content_desc"
>
私人资产分析规划师(Private Assets Analysis
Planner,简称PAAP)认证系列,目前包括私人资产分析规划师(一级)/PAAP(Ⅰ)和私人资产分析规划师(二级)/PAAP(Ⅱ)。
</div>
<div
class=
"con_list"
>
<div
class=
"list_item"
v-for=
"(item, index) in courseList"
:key=
"index"
>
<ul>
<li>
<p>
{{
item
.
tit
}}
</p>
</li>
</ul>
<div
class=
"item_desc"
>
{{
item
.
desc
}}
</div>
<img
:src=
"item.img"
class=
"item_img"
/>
</div>
</div>
</div>
<div
class=
"con_education"
>
<div
class=
"education_tit"
>
PAA持续教育
</div>
<div
class=
"education_desc"
>
PAA持续教育,是清控紫荆金融保险学院PAA认证中心为持证人定制研发的终身学习培训平台,旨在为持证人提供知识更新迭代、使其持续拥有PAA证书的持证效力与执业能力。
</div>
<div
class=
"education_con"
>
<div
class=
"con_content"
>
持证人须在证书报告期内(自获得证书签发之日起,每24个月为一个报告期),完成规定的60学分,如未达到将无法进行证书再认证。
</div>
<div
class=
"con_content"
>
持证人可通过线上学习、线下活动、在职学习、公开发表论文或出版著作以及担任专业组织委员等多种形式获得学分。期间由紫荆教育金融保险学院提供全方位教育科技平台支持和全流程专属导师制辅导。
</div>
</div>
</div>
</div>
</div>
</div>
<p
class=
"more"
>
查看更多案例
</p>
</div>
</section>
</
template
>
</
template
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.section
{
.main
{
position
:
relative
;
width
:
100%
;
max-width
:
1200px
;
margin
:
0
auto
;
background
:
url('https://webapp-pub.ezijing.com/project_online/paa/course_bg.png')
no-repeat
center
;
}
background-size
:
100%
100%
;
.topic
{
.main_con
{
height
:
266px
;
width
:
1200px
;
background
:
url('https://webapp-pub.ezijing.com/project_online/fi/course_bg.png')
no-repeat
;
margin
:
auto
;
display
:
flex
;
padding
:
71px
0
126px
0
;
align-items
:
center
;
box-sizing
:
border-box
;
justify-content
:
center
;
.con_tit
{
p
{
display
:
flex
;
font-size
:
24px
;
justify-content
:
center
;
font-weight
:
400
;
.tit_icon
{
line-height
:
40px
;
width
:
40px
;
color
:
#ffffff
;
height
:
13px
;
text-align
:
center
;
}
margin
:
0
40px
;
.icon1
{
}
padding-top
:
5px
;
}
margin-right
:
-7px
;
.case-list
{
}
display
:
grid
;
.icon2
{
grid-template-columns
:
repeat
(
4
,
1fr
);
padding-top
:
20px
;
}
margin-left
:
-7px
;
.case-item
{
}
position
:
relative
;
.tit_txt
{
margin-top
:
-1px
;
font-size
:
28px
;
margin-right
:
-1px
;
font-weight
:
400
;
height
:
240px
;
line-height
:
34px
;
padding
:
0
36px
;
color
:
#ffffff
;
border
:
1px
solid
#ddd
;
}
h3
{
}
margin-top
:
60px
;
.con_tab
{
font-size
:
24px
;
margin-top
:
62px
;
font-weight
:
400
;
height
:
118px
;
line-height
:
1
;
background
:
#ffffff
;
color
:
#333
;
border-radius
:
6px
;
text-align
:
center
;
display
:
flex
;
}
.tab_con
{
.line
{
width
:
600px
;
width
:
78px
;
height
:
100%
;
height
:
2px
;
display
:
flex
;
background
:
var
(
--
main-color
);
justify-content
:
center
;
margin
:
40px
auto
28px
;
align-items
:
center
;
}
flex-direction
:
column
;
.desc
{
.con_cn
{
font-size
:
16px
;
font-size
:
22px
;
line-height
:
24px
;
font-weight
:
bold
;
color
:
#666
;
line-height
:
34px
;
text-align
:
center
;
}
}
.con_en
{
.cover
{
font-size
:
18px
;
display
:
none
;
font-weight
:
400
;
position
:
absolute
;
line-height
:
34px
;
left
:
0
;
letter-spacing
:
2px
;
top
:
0
;
}
right
:
0
;
}
bottom
:
0
;
.con1
{
background-color
:
var
(
--
main-color
);
background
:
#c1ab85
;
}
position
:
relative
;
.inner
{
.con_cn
{
position
:
absolute
;
color
:
#ffffff
;
top
:
10px
;
}
left
:
10px
;
.con_en
{
right
:
10px
;
color
:
#ffffff
;
bottom
:
10px
;
}
display
:
flex
;
.h
{
flex-direction
:
column
;
width
:
0px
;
align-items
:
center
;
height
:
0px
;
justify-content
:
center
;
border
:
5px
solid
transparent
;
font-size
:
18px
;
border-top-color
:
#c1ab85
;
line-height
:
38px
;
position
:
absolute
;
color
:
#ffffff
;
bottom
:
-10px
;
border
:
1px
solid
#fff
;
left
:
50%
;
}
transform
:
translateX
(
-50%
);
&
:hover
{
}
.cover
{
}
display
:
block
;
.con2
{
.con_cn
{
color
:
#333333
;
}
.con_en
{
color
:
#666666
;
}
}
}
.con_content
{
background
:
#ffffff
;
border-radius
:
6px
;
margin-top
:
34px
;
padding
:
85px
75px
;
.content_desc
{
font-size
:
16px
;
font-weight
:
400
;
line-height
:
30px
;
color
:
#333333
;
}
.con_list
{
margin-top
:
35px
;
display
:
flex
;
justify-content
:
space-between
;
.list_item
{
ul
{
padding-left
:
20px
;
li
{
list-style-type
:
square
;
color
:
#c1ab85
;
p
{
font-size
:
18px
;
font-weight
:
500
;
line-height
:
34px
;
color
:
#a79473
;
}
}
}
.item_desc
{
width
:
504px
;
font-size
:
16px
;
font-weight
:
400
;
line-height
:
30px
;
color
:
#535353
;
margin-top
:
14px
;
}
.item_img
{
margin-top
:
26px
;
}
}
}
}
.con_education
{
background
:
#ffffff
;
border-radius
:
6px
;
margin-top
:
40px
;
padding
:
69px
75px
74px
73px
;
// box-sizing: border-box;
.education_tit
{
font-size
:
22px
;
font-weight
:
bold
;
line-height
:
34px
;
color
:
#333333
;
}
.education_desc
{
font-size
:
16px
;
font-weight
:
400
;
line-height
:
30px
;
color
:
#333333
;
margin-top
:
31px
;
}
.education_con
{
display
:
flex
;
justify-content
:
space-between
;
.con_content
{
width
:
480px
;
background
:
url('https://webapp-pub.ezijing.com/project_online/paa/education_bg.png')
no-repeat
center
;
font-size
:
16px
;
font-weight
:
400
;
line-height
:
30px
;
color
:
#333333
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
box-sizing
:
border-box
;
}
}
}
}
}
}
}
}
.more
{
padding
:
20px
0
;
font-size
:
14px
;
line-height
:
1
;
color
:
#999
;
text-align
:
center
;
}
</
style
>
</
style
>
src/modules/home/components/ExamProcess.vue
0 → 100644
浏览文件 @
5af3c05b
<
script
setup
lang=
"ts"
></
script
>
<
template
>
<div
class=
"main"
id=
"apply"
>
<div
class=
"main_con"
>
<div
class=
"con_tit"
>
<img
src=
"https://webapp-pub.ezijing.com/project_online/paa/course_tit_icon.png"
class=
"tit_icon icon1"
/>
<div
class=
"tit_txt"
>
认证考试流程
</div>
<img
src=
"https://webapp-pub.ezijing.com/project_online/paa/course_tit_icon.png"
class=
"tit_icon icon2"
/>
</div>
<img
src=
"https://webapp-pub.ezijing.com/project_online/paa/exam_process.png"
class=
"con_img"
/>
</div>
</div>
</
template
>
<
style
lang=
"scss"
scoped
>
.main
{
width
:
100%
;
background
:
url('https://webapp-pub.ezijing.com/project_online/paa/exam_bg.png')
no-repeat
center
/
100%
100%
;
box-sizing
:
border-box
;
.main_con
{
padding
:
84px
0
127px
0
;
margin
:
auto
;
text-align
:
center
;
.con_tit
{
display
:
flex
;
justify-content
:
center
;
.tit_icon
{
width
:
40px
;
height
:
13px
;
}
.icon1
{
padding-top
:
5px
;
margin-right
:
-7px
;
}
.icon2
{
padding-top
:
20px
;
margin-left
:
-7px
;
}
.tit_txt
{
font-size
:
28px
;
font-weight
:
400
;
line-height
:
34px
;
color
:
#ffffff
;
}
}
.con_img
{
margin-top
:
83px
;
}
}
}
</
style
>
src/modules/home/components/Main.vue
浏览文件 @
5af3c05b
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
'swiper/css'
import
'swiper/css'
const
mainList
:
Array
<
{
img
:
string
;
tit
:
string
}
>
=
[
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main1.png'
,
tit
:
'严谨的课程体系'
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main2.png'
,
tit
:
'系统的教学平台'
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main1.png'
,
tit
:
'灵活的学习模式'
}
]
const
mainList1
:
Array
<
{
img
:
string
;
img1
:
string
;
tit
:
string
;
desc
:
string
}
>
=
[
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main4_1.png'
,
img1
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main4_2.png'
,
tit
:
'考培分离'
,
desc
:
'灵活自如公平公正'
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main5_1.png'
,
img1
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main5_2.png'
,
tit
:
'千人千卷'
,
desc
:
'因材施教百炼成钢'
},
{
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main6_1.png'
,
img1
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/main6_2.png'
,
tit
:
'专属辅导'
,
desc
:
'高效学习精准施教'
}
]
</
script
>
</
script
>
<
template
>
<
template
>
<div
class=
"main"
>
<div
class=
"main"
>
<div
class=
"main_con"
>
<div
class=
"main_con"
>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/main1.png"
alt=
""
/>
<div
class=
"con_tit"
>
PAA 做私人权属资产服务的专家
</div>
<div
class=
"con_content"
>
<div
class=
"con_line"
></div>
清控紫荆金融保险研究院
&
清控紫荆金融保险学院,基于政策指导,通过汇聚清华等国内外高校、行业骨干企业、行业研究机构的科研资源与实践成果,打造国内顶尖、国际卓越的金融保险智库,达到“产学研”的深度融合;通过创立通晓金融保险理论与行业实务双方面的金融保险课题研发团队,针对金融保险不同领域、不同阶段的学习需求,为金融从业者提供专业学习契机、为金融机构培育高素质国际化人才。
<div
class=
"con_list"
>
<div
class=
"list_item"
v-for=
"(item, index) in mainList"
:key=
"index"
>
<img
:src=
"item.img"
class=
"item_img"
/>
<div
class=
"item_tit"
>
{{
item
.
tit
}}
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"main_con1"
>
<div
class=
"main_con1"
>
核心产品为紫荆教育专属版权产品,站在高起点、高站位、高规格的“三高”教育标准平台上,向社会和企业精
<br
/>
英人士教授与传承“格与质”、“道与术”、“欲与渔”的经营管理品格和能力,主打行业认证类、行业标准类
<br
/>
和定制专属类等三类金融职业类培育体系。
<div
class=
"con1_list"
>
<div
class=
"list_item"
v-for=
"(item, index) in mainList1"
:key=
"index"
>
<img
:src=
"item.img"
class=
"item_img"
/>
<img
:src=
"item.img1"
class=
"item_img1"
/>
<div
class=
"item_line"
></div>
<div
class=
"item_tit"
>
{{
item
.
tit
}}
</div>
<div
class=
"item_desc"
>
{{
item
.
desc
}}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.main
{
.main
{
background
:
#f5f5f5
;
.main_con
{
.main_con
{
width
:
1200px
;
width
:
1200px
;
margin
:
95px
auto
;
height
:
185px
;
display
:
flex
;
background
:
#ffffff
;
justify-content
:
space-between
;
box-shadow
:
0px
6px
12px
rgba
(
0
,
0
,
0
,
0
.15
)
;
align-items
:
center
;
border-radius
:
16px
;
margin
:
-70px
auto
;
.con_content
{
position
:
relative
;
background
:
#ffffff
;
z-index
:
10
;
position
:
relative
;
box-sizing
:
border-box
;
margin-left
:
-143px
;
.con_tit
{
z-index
:
100
;
text-align
:
center
;
font-size
:
2
0
px
;
font-size
:
2
2
px
;
font-weight
:
400
;
font-weight
:
bold
;
line-height
:
4
0px
;
line-height
:
5
0px
;
color
:
#333333
;
color
:
#333333
;
padding
:
69px
55px
62px
58px
;
padding-top
:
33px
;
}
.con_line
{
border-bottom
:
1px
dashed
#000000
;
}
.con_list
{
display
:
flex
;
justify-content
:
space-around
;
align-items
:
center
;
margin-top
:
19px
;
.list_item
{
display
:
flex
;
align-items
:
center
;
.item_tit
{
margin-left
:
15px
;
font-size
:
20px
;
font-weight
:
400
;
line-height
:
50px
;
color
:
#333333
;
}
}
}
}
}
}
.main_con1
{
.main_con1
{
height
:
308px
;
width
:
1200px
;
background
:
url('https://webapp-pub.ezijing.com/project_online/fi/main2.png')
no-repeat
center
;
margin
:
144px
auto
;
background-size
:
100%
100%
;
padding
:
0
50px
;
font-size
:
24px
;
font-weight
:
400
;
line-height
:
40px
;
color
:
#ffffff
;
text-align
:
center
;
padding-top
:
100px
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
.con1_list
{
display
:
grid
;
grid-template-columns
:
repeat
(
3
,
1fr
);
grid-column-gap
:
85px
;
.list_item
{
width
:
310px
;
height
:
367px
;
background
:
#ffffff
;
border-radius
:
4px
;
border
:
1px
solid
#dadada
;
padding-top
:
104px
;
box-sizing
:
border-box
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
cursor
:
pointer
;
.item_img1
{
display
:
none
;
}
.item_line
{
width
:
50px
;
height
:
2px
;
background
:
#aa1941
;
margin
:
41px
auto
;
text-align
:
center
;
}
.item_tit
{
font-size
:
24px
;
font-weight
:
500
;
line-height
:
34px
;
color
:
#333333
;
}
.item_desc
{
display
:
none
;
font-size
:
20px
;
font-weight
:
400
;
line-height
:
50px
;
color
:
#ffffff
;
}
&
:hover
{
background
:
#c1ab85
;
padding-top
:
84px
;
.item_img
{
display
:
none
;
}
.item_img1
{
display
:
block
;
}
.item_line
{
background
:
#ffffff
;
}
.item_tit
{
color
:
#ffffff
;
}
.item_desc
{
display
:
block
;
}
}
}
}
}
}
}
}
</
style
>
</
style
>
src/modules/home/components/ProjectSystem.vue
浏览文件 @
5af3c05b
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
const
authList
:
Array
<
{
img
:
string
;
tit
:
string
;
list
:
any
}
>
=
[
const
list
:
Array
<
{
tit
:
string
;
desc
:
string
;
img
:
string
}
>
=
[
{
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab1_1.png'
,
tit
:
'专业权威'
,
tit
:
'私人资产分析规划师(一级/二级)/ PAAP(I/II)'
,
desc
:
'由清华大学知名教授、清控紫荆教育专职名师和高级实战专家组成“产学研”一体化教学团队。'
,
list
:
[
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/list1.png'
{
tit
:
'学员属性'
,
desc
:
'包括但并不仅限于金融保险企业绩优营销员'
},
{
tit
:
'入学模式'
,
desc
:
'基于金融保险企业专属激励方案招生。'
}
]
},
},
{
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab1_2.png'
,
tit
:
'行业标准'
,
tit
:
'高级私人资产分析管理师 / PAAM'
,
desc
:
'首创专属金融保险私人权属资产分析的多维模型、私人权属资产全面预算、私人不良资产处置等研发课题和课程内容。'
,
list
:
[
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/list2.png'
{
tit
:
'学员属性'
,
desc
:
'金融保险企业精英代理人、团队管理者'
},
{
tit
:
'入学模式'
,
desc
:
'基于金融保险企业特别奖励、专属激励方案招生。'
}
]
},
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab1_3.png'
,
tit
:
'公司金融管理师(CFM)'
,
list
:
[
{
tit
:
'学员属性'
,
desc
:
'公司金融管理师(CFM)'
},
{
tit
:
'入学模式'
,
desc
:
'CFM报名系统提交,自动审核通过,即可报名。'
}
]
}
]
const
standardList
:
Array
<
{
img
:
string
;
tit
:
string
;
list
:
any
}
>
=
[
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab2_1.png'
,
tit
:
'金融保险高级经理人班'
,
list
:
[
{
tit
:
'学员属性'
,
desc
:
'金融企业及保险公司各层级内勤管理者、外勤总监及区域总经理'
},
{
tit
:
'入学模式'
,
desc
:
'基于金融保险企业经理人特别奖励方案招生。'
}
]
},
},
{
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab2_2.png'
,
tit
:
'职业认证'
,
tit
:
'高级私人资产分析管理师 / PAAM'
,
desc
:
'现代金融保险服务业从业人员职业等级认证系列,从入门到专业、从专业到权威的规划类与管理类职业认证体系。'
,
list
:
[
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/list3.png'
{
tit
:
'学员属性'
,
desc
:
'社会企业、保险中介企业、保险门店和独立代理人工作室董监高人士'
},
{
tit
:
'入学模式'
,
desc
:
'以高管进修班形式讲授“版权课程”。向社会和企业高管教授与传承“格与质”、“道”与“术”、“欲与渔”的经营管理品格与能力。后期通过教学深度,逐步演变为制式任职资格岗位进修班。'
}
]
}
]
const
universalList
:
Array
<
{
img
:
string
;
tit
:
string
;
list
:
any
}
>
=
[
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab3_1.png'
,
tit
:
'私人财富风险管理顾问 / PRP'
,
list
:
[
{
tit
:
'学员属性'
,
desc
:
'金融保险内外勤所有从业人员及服务于行业的相关人员'
},
{
tit
:
'入学模式'
,
desc
:
'PRP报名系统提交,自动审核通过,即可报名。'
}
]
},
},
{
{
img
:
'https://webapp-pub.ezijing.com/project_online/fi/tab3_2.png'
,
tit
:
'普惠实战'
,
tit
:
'高级私人资产分析管理师 / PAAM'
,
desc
:
'隶属清控紫荆金融保险战略性产品。旨在为金融保险企业打造卓越代理人、卓越经纪人以及保险门店、保险工作室独立代理人养成计划,打造终身学习型高绩效团队,成为中国保险销售冠军的人才摇篮。'
,
list
:
[
img
:
'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online/paa/list4.png'
{
tit
:
'学员属性'
,
desc
:
'国内在职保险营销员'
},
{
tit
:
'入学模式'
,
desc
:
'面向紫荆教育合作保险企业的新职员,组建特别组训团队授课。依照学员职位层级,具体分为:大中型保险企业新人班(学制:100天)、中小型寿险公司新人班、主管班、经理班。'
},
{
tit
:
'学习内容'
,
desc
:
'行业必备的专业知识、经营管理、服务技能、可持续发展理念,以及终身学习思维。'
}
]
}
}
]
]
</
script
>
</
script
>
<
template
>
<
template
>
<div
class=
"main_con"
id=
"product"
>
<div
class=
"main"
>
<div
class=
"con_tit"
>
<div
class=
"main_con"
>
<div
class=
"tit_img"
>
<div
class=
"con_list"
v-for=
"(item, index) in list"
:key=
"index"
>
<div
class=
"img_box"
></div>
<div
class=
"list_left"
>
<div
class=
"left_index"
>
{{
'0'
+
(
index
+
1
)
}}
</div>
<div
class=
"left_tit"
>
{{
item
.
tit
}}
</div>
<div
class=
"left_desc"
>
{{
item
.
desc
}}
</div>
</div>
<img
:src=
"item.img"
class=
"item_img"
/>
</div>
</div>
<div
class=
"tit_text"
>
全系列产品体系
</div>
<div
class=
"tit_img"
>
<div
class=
"img_box"
></div>
</div>
</div>
<div
class=
"con_content"
>
<el-tabs
class=
"my-tabs"
>
<el-tab-pane>
<template
#
label
>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/tab1.png"
class=
"icon"
/>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/tab1_hover.png"
class=
"active-icon"
/>
<p>
行业认证类
</p>
</
template
>
<div
class=
"content_tit"
>
联合业内领袖、资深专家学者,帮助相关从业者快速建立岗位相关的理论知识体系,加强实训教学,提高实训能力,协助从业者掌握、提升岗位所需的各种实务技能。
</div>
<div
class=
"content_main"
>
<div
class=
"main_list"
v-for=
"(item, index) in authList"
:key=
"index"
>
<img
:src=
"item.img"
alt=
""
class=
"list_img1"
/>
<div
class=
"list_tit"
>
{{ item.tit }}
</div>
<ul>
<li
class=
"list_desc"
v-for=
"(it, index) in item.list"
:key=
"index"
>
<div
class=
"desc_tit"
>
{{ it.tit }}
</div>
<div
class=
"desc_con"
>
{{ it.desc }}
</div>
</li>
</ul>
</div>
</div>
</el-tab-pane>
<el-tab-pane>
<
template
#
label
>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/tab2.png"
class=
"icon"
/>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/tab2_hover.png"
class=
"active-icon"
/>
<p>
行业标准类
</p>
</
template
>
<div
class=
"content_tit"
>
联合业内专家、国内外权威产业研究机构,共同开发教学课程,为企业高层人士提供中国标准化的任职能力及领导力培训。
</div>
<div
class=
"content_main"
>
<div
class=
"main_list"
v-for=
"(item, index) in standardList"
:key=
"index"
>
<img
:src=
"item.img"
alt=
""
class=
"list_img2"
/>
<div
class=
"list_tit"
>
{{ item.tit }}
</div>
<ul>
<li
class=
"list_desc"
v-for=
"(it, index) in item.list"
:key=
"index"
>
<div
class=
"desc_tit"
>
{{ it.tit }}
</div>
<div
class=
"desc_con"
>
{{ it.desc }}
</div>
</li>
</ul>
</div>
</div>
</el-tab-pane>
<el-tab-pane>
<
template
#
label
>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/tab3.png"
class=
"icon"
/>
<img
src=
"https://webapp-pub.ezijing.com/project_online/fi/tab3_hover.png"
class=
"active-icon"
/>
<p>
行业普及类
</p>
</
template
>
<div
class=
"content_tit"
>
联合业内领袖、资深专家学者,帮助相关从业者快速建立岗位相关的理论知识体系,加强实训教学,提高实训能力,协助从业者掌握、提升岗位所需的各种实务技能。
</div>
<div
class=
"content_main"
>
<div
class=
"main_list"
v-for=
"(item, index) in universalList"
:key=
"index"
>
<img
:src=
"item.img"
alt=
""
/>
<div
class=
"list_tit"
>
{{ item.tit }}
</div>
<ul>
<li
class=
"list_desc"
v-for=
"(it, index) in item.list"
:key=
"index"
>
<div
class=
"desc_tit"
>
{{ it.tit }}
</div>
<div
class=
"desc_con"
>
{{ it.desc }}
</div>
</li>
</ul>
</div>
</div>
</el-tab-pane>
</el-tabs>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.main_con
{
.main
{
padding-top
:
80px
;
background
:
#f5f5f5
;
.con_tit
{
.main_con
{
width
:
1200px
;
margin
:
auto
;
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
space-between
;
align-items
:
center
;
align-items
:
center
;
flex-wrap
:
wrap
;
padding
:
128px
0
109px
0
;
.tit_img
{
.con_list
{
width
:
16px
;
width
:
585px
;
height
:
16px
;
height
:
274px
;
border
:
1px
dotted
#c1ab85
;
background
:
#ffffff
;
box-shadow
:
0px
3px
10px
rgba
(
0
,
0
,
0
,
0
.16
);
border-radius
:
6px
;
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
padding
:
0
20px
26px
40px
;
align-items
:
center
;
box-sizing
:
border-box
;
.img_box
{
display
:
flex
;
width
:
6px
;
.list_left
{
height
:
6px
;
background
:
#aa1941
;
}
}
.tit_text
{
font-size
:
32px
;
font-weight
:
500
;
line-height
:
34px
;
color
:
#333333
;
margin
:
0
14px
0
8px
;
}
}
.con_content
{
width
:
1200px
;
margin
:
59px
auto
;
:deep
(
.my-tabs
)
{
.
el-tabs__active-bar
,
.
el-tabs__nav-wrap
:
:
after
{
display
:
none
;
}
.el-tabs__nav
{
width
:
960px
;
height
:
70px
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
border
:
1px
solid
#e6e6e6
;
}
.el-tabs__nav-scroll
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
.el-tabs__item
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
flex-start
;
width
:
320px
;
.left_index
{
height
:
70px
;
font-size
:
60px
;
border-radius
:
6px
;
font-weight
:
normal
;
padding
:
0
;
line-height
:
24px
;
border-bottom
:
none
;
color
:
#eaeaea
;
padding-top
:
29px
;
.active-icon
{
display
:
none
;
}
}
p
{
.left_tit
{
font-size
:
2
4
px
;
font-size
:
2
0
px
;
font-weight
:
4
00
;
font-weight
:
5
00
;
line-height
:
34px
;
line-height
:
34px
;
color
:
#
53535
3
;
color
:
#
33333
3
;
margin-
left
:
10
px
;
margin-
top
:
-13
px
;
}
}
&
.is-active
{
.left_desc
{
background-color
:
var
(
--
main-color
);
width
:
260px
;
font-size
:
16px
;
.icon
{
font-weight
:
400
;
display
:
none
;
line-height
:
28px
;
}
color
:
#666666
;
.active-icon
{
margin-top
:
20px
;
display
:
block
;
}
p
{
color
:
#fff
;
}
}
}
}
}
.content_tit
{
.item_img
{
margin-top
:
40px
;
width
:
240px
;
font-size
:
20px
;
height
:
150px
;
font-weight
:
400
;
padding
:
62px
0
0
24px
;
line-height
:
32px
;
color
:
#333333
;
text-align
:
center
;
}
.content_main
{
display
:
flex
;
justify-content
:
space-between
;
margin-top
:
29px
;
.main_list
{
// height: 471px;
background
:
rgba
(
255
,
255
,
255
,
0
.39
);
box-shadow
:
0px
3px
6px
rgba
(
0
,
0
,
0
,
0
.16
);
padding
:
21px
16px
16px
16px
;
margin-right
:
30px
;
.list_img1
{
width
:
350px
;
height
:
197px
;
}
.list_img2
{
width
:
555px
;
height
:
197px
;
}
.list_tit
{
font-size
:
18px
;
font-weight
:
500
;
line-height
:
34px
;
color
:
#aa1941
;
margin-top
:
24px
;
}
ul
{
margin-top
:
23px
;
color
:
#c1ab85
;
padding-left
:
20px
;
.list_desc
{
list-style-type
:
square
;
.desc_tit
{
font-size
:
16px
;
font-weight
:
400
;
line-height
:
34px
;
color
:
#333333
;
}
.desc_con
{
font-size
:
16px
;
font-weight
:
400
;
line-height
:
34px
;
color
:
#666666
;
}
}
}
}
}
}
}
}
.con_list
:nth-child
(
3
),
.con_list
:nth-child
(
4
)
{
margin-top
:
35px
;
}
}
}
}
}
</
style
>
</
style
>
src/modules/home/components/Teacher.vue
浏览文件 @
5af3c05b
...
@@ -83,10 +83,10 @@ function next(swiper) {
...
@@ -83,10 +83,10 @@ function next(swiper) {
<
template
>
<
template
>
<section
class=
"section"
id=
"teacher"
>
<section
class=
"section"
id=
"teacher"
>
<div
class=
"section__inner"
>
<div
class=
"section__inner"
>
<div
class=
"
section-title
"
>
<div
class=
"
con_tit
"
>
<
em
class=
"section-title_dot"
></em
>
<
img
src=
"https://webapp-pub.ezijing.com/project_online/paa/course_tit_icon.png"
class=
"tit_icon icon1"
/
>
<
h2>
师资团队
</h2
>
<
div
class=
"tit_txt"
>
师资团队
</div
>
<
em
class=
"section-title_dot"
></em
>
<
img
src=
"https://webapp-pub.ezijing.com/project_online/paa/course_tit_icon.png"
class=
"tit_icon icon2"
/
>
</div>
</div>
<h3
class=
"subtitle"
>
清华大学知名教授、博士生导师
</h3>
<h3
class=
"subtitle"
>
清华大学知名教授、博士生导师
</h3>
<div
class=
"my-swiper"
>
<div
class=
"my-swiper"
>
...
@@ -96,7 +96,8 @@ function next(swiper) {
...
@@ -96,7 +96,8 @@ function next(swiper) {
:slidesPerView=
"4"
:slidesPerView=
"4"
:spaceBetween=
"20"
:spaceBetween=
"20"
:modules=
"[Navigation]"
:modules=
"[Navigation]"
@
swiper=
"swiper => (swiper1 = swiper)"
>
@
swiper=
"swiper => (swiper1 = swiper)"
>
<SwiperSlide
v-for=
"(item, index) in list"
:key=
"index"
class=
"teacher-item"
>
<SwiperSlide
v-for=
"(item, index) in list"
:key=
"index"
class=
"teacher-item"
>
<img
:src=
"item.avatar"
/>
<img
:src=
"item.avatar"
/>
<h3>
{{
item
.
name
}}
</h3>
<h3>
{{
item
.
name
}}
</h3>
...
@@ -116,9 +117,10 @@ function next(swiper) {
...
@@ -116,9 +117,10 @@ function next(swiper) {
:slidesPerView=
"4"
:slidesPerView=
"4"
:spaceBetween=
"20"
:spaceBetween=
"20"
:modules=
"[Navigation]"
:modules=
"[Navigation]"
@
swiper=
"swiper => (swiper2 = swiper)"
>
@
swiper=
"swiper => (swiper2 = swiper)"
<SwiperSlide
v-for=
"(item, index) in list2"
:key=
"index"
class=
"teacher-item"
>
>
<img
:src=
"item.avatar"
/>
<SwiperSlide
v-for=
"(item, index) in list2"
:key=
"index"
class=
"teacher-item1"
>
<!--
<img
:src=
"item.avatar"
/>
-->
<h3>
{{
item
.
name
}}
</h3>
<h3>
{{
item
.
name
}}
</h3>
<ol
v-if=
"item.children?.length"
>
<ol
v-if=
"item.children?.length"
>
<li
v-for=
"item in item.children"
:key=
"item"
>
{{
item
}}
</li>
<li
v-for=
"item in item.children"
:key=
"item"
>
{{
item
}}
</li>
...
@@ -137,7 +139,8 @@ function next(swiper) {
...
@@ -137,7 +139,8 @@ function next(swiper) {
--section-title-color
:
#fff
;
--section-title-color
:
#fff
;
--section-title-dot-bgcolor
:
#fff
;
--section-title-dot-bgcolor
:
#fff
;
--section-title-dot-border-color
:
#fff
;
--section-title-dot-border-color
:
#fff
;
background
:
url('https://webapp-pub.ezijing.com/project_online/fi/teacher_bg.jpg')
no-repeat
center
top
;
background
:
url('https://webapp-pub.ezijing.com/project_online/fi/teacher_bg.jpg')
no-repeat
center
;
background-size
:
100%
100%
;
}
}
.section-title
{
.section-title
{
padding-bottom
:
0
;
padding-bottom
:
0
;
...
@@ -148,6 +151,29 @@ function next(swiper) {
...
@@ -148,6 +151,29 @@ function next(swiper) {
min-height
:
1080px
;
min-height
:
1080px
;
margin
:
0
auto
;
margin
:
0
auto
;
}
}
.con_tit
{
display
:
flex
;
justify-content
:
center
;
padding-top
:
84px
;
.tit_icon
{
width
:
40px
;
height
:
13px
;
}
.icon1
{
padding-top
:
5px
;
margin-right
:
-7px
;
}
.icon2
{
padding-top
:
20px
;
margin-left
:
-7px
;
}
.tit_txt
{
font-size
:
28px
;
font-weight
:
400
;
line-height
:
34px
;
color
:
#ffffff
;
}
}
.subtitle
{
.subtitle
{
margin
:
60px
0
30px
;
margin
:
60px
0
30px
;
font-size
:
24px
;
font-size
:
24px
;
...
@@ -216,4 +242,45 @@ function next(swiper) {
...
@@ -216,4 +242,45 @@ function next(swiper) {
margin-top
:
10px
;
margin-top
:
10px
;
}
}
}
}
.teacher-item1
{
width
:
267px
;
height
:
208px
;
background-color
:
#fff
;
border-radius
:
4px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
padding-top
:
32px
;
box-sizing
:
border-box
;
h3
{
// margin-top: 12px;
font-size
:
18px
;
font-weight
:
500
;
line-height
:
1
;
color
:
#333
;
text-align
:
center
;
}
ol
{
margin-top
:
29px
;
li
{
position
:
relative
;
margin
:
0
29px
;
font-size
:
16px
;
line-height
:
24px
;
color
:
#535353
;
&
:
:
before
{
content
:
''
;
position
:
absolute
;
left
:
-10px
;
top
:
9px
;
width
:
5px
;
height
:
5px
;
background
:
#c1ab85
;
}
}
}
li
+
li
{
margin-top
:
11px
;
}
}
</
style
>
</
style
>
src/modules/home/views/Index.vue
浏览文件 @
5af3c05b
...
@@ -2,15 +2,21 @@
...
@@ -2,15 +2,21 @@
import
Banner
from
'../components/Banner.vue'
import
Banner
from
'../components/Banner.vue'
import
Main
from
'../components/Main.vue'
import
Main
from
'../components/Main.vue'
import
ProjectSystem
from
'../components/ProjectSystem.vue'
import
ProjectSystem
from
'../components/ProjectSystem.vue'
import
Teacher
from
'../components/Teacher.vue'
import
Knowledge
from
'../components/Knowledge.vue'
import
Course
from
'../components/Course.vue'
import
Course
from
'../components/Course.vue'
import
Brand
from
'../components/Brand.vue'
import
ExamProcess
from
'../components/ExamProcess.vue'
import
Contact
from
'../components/Contact.vue'
import
Teacher
from
'../components/Teacher.vue'
// import Knowledge from '../components/Knowledge.vue'
// import Brand from '../components/Brand.vue'
// import Contact from '../components/Contact.vue'
</
script
>
</
script
>
<
template
>
<
template
>
<Banner></Banner>
<Banner></Banner>
<Main></Main>
<ProjectSystem></ProjectSystem>
<Course></Course>
<ExamProcess></ExamProcess>
<Teacher></Teacher>
<Teacher></Teacher>
</
template
>
</
template
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论