提交 70f2b887 authored 作者: 王鹏飞's avatar 王鹏飞

chore: 新增商业数据分析实验室

上级 e81001ef
...@@ -219,6 +219,11 @@ export default { ...@@ -219,6 +219,11 @@ export default {
name: this.$t('menu.industrialCollegeChild.cert'), name: this.$t('menu.industrialCollegeChild.cert'),
isShow: false, isShow: false,
path: '/services/job' path: '/services/job'
},
{
name: this.$t('menu.industrialCollegeChild.data'),
isShow: false,
path: '/services/dataAnalysis'
} }
] ]
}, },
......
<template> <template>
<div class="service-content max-width-center"> <div class="service-content max-width-center">
<div class="title">{{$t('home.college.title')}}</div> <div class="title">{{ $t('home.college.title') }}</div>
<ul class="nav-content"> <ul class="nav-content">
<li v-for="(item, index) in data" :key="index" @click="goPage(item.path, item.pathType)"> <li v-for="(item, index) in data" :key="index" @click="goPage(item.path, item.pathType)">
<img :src="item.icon" alt="" class="icon"> <img :src="item.icon" alt="" class="icon" />
<img :src="item.iconActive" alt="" class="icon-active"> <img :src="item.iconActive" alt="" class="icon-active" />
<div class="text" v-html="item.text"></div> <div class="text" v-html="item.text"></div>
</li> </li>
</ul> </ul>
...@@ -18,32 +18,51 @@ export default { ...@@ -18,32 +18,51 @@ export default {
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/home/01.png', icon: 'https://webapp-pub.ezijing.com/www/pc/home/01.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/01_on.png', iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/01_on.png',
text: this.$t('home.college.corePower'), path: '/services/college', pathType: 1 text: this.$t('home.college.corePower'),
path: '/services/college',
pathType: 1
}, },
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/home/02.png', icon: 'https://webapp-pub.ezijing.com/www/pc/home/02.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/02_on.png', iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/02_on.png',
text: this.$t('home.college.program'), path: '/services/major', pathType: 1 text: this.$t('home.college.program'),
path: '/services/major',
pathType: 1
}, },
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/home/03.png', icon: 'https://webapp-pub.ezijing.com/www/pc/home/03.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/03_on.png', iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/03_on.png',
text: this.$t('home.college.saas'), path: 'https://x-learning.ezijing.com', pathType: 0 text: this.$t('home.college.saas'),
path: 'https://x-learning.ezijing.com',
pathType: 0
}, },
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/home/04.png', icon: 'https://webapp-pub.ezijing.com/www/pc/home/04.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/04_on.png', iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/04_on.png',
text: this.$t('home.college.internship'), path: '/services/employment', pathType: 1 text: this.$t('home.college.internship'),
path: '/services/employment',
pathType: 1
}, },
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/home/05.png', icon: 'https://webapp-pub.ezijing.com/www/pc/home/05.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/05_on.png', iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/05_on.png',
text: this.$t('home.college.x'), path: 'https://x.ezijing.com', pathType: 0 text: this.$t('home.college.x'),
path: 'https://x.ezijing.com',
pathType: 0
}, },
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/home/06.png', icon: 'https://webapp-pub.ezijing.com/www/pc/home/06.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/06_on.png', iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/06_on.png',
text: this.$t('home.college.cert'), path: '/services/job', pathType: 1 text: this.$t('home.college.cert'),
path: '/services/job',
pathType: 1
},
{
icon: 'https://webapp-pub.ezijing.com/www/pc/home/07.png',
iconActive: 'https://webapp-pub.ezijing.com/www/pc/home/07_on.png',
text: this.$t('home.college.data'),
path: '/services/dataAnalysis',
pathType: 1
} }
] ]
} }
...@@ -62,47 +81,47 @@ export default { ...@@ -62,47 +81,47 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.service-content{ .service-content {
padding-top: 44px; padding-top: 44px;
.title{ .title {
font-size: 24px; font-size: 24px;
font-weight: bold; font-weight: bold;
line-height: 34px; line-height: 34px;
color: #424242; color: #424242;
margin-bottom: 20px; margin-bottom: 20px;
} }
.nav-content{ .nav-content {
display: flex; display: flex;
li{ li {
width: 156px; width: 156px;
height: 186px; height: 186px;
background: #FFFFFF; background: #ffffff;
padding-top: 36px; padding-top: 36px;
margin-right: 20px; margin-right: 20px;
cursor: pointer; cursor: pointer;
transition: all .5s; transition: all 0.5s;
img{ img {
width: 64px; width: 64px;
height: 64px; height: 64px;
display: block; display: block;
margin: 0 auto; margin: 0 auto;
} }
.icon-active{ .icon-active {
display: none; display: none;
} }
&:hover{ &:hover {
background: rgba(170, 25, 65, 1); background: rgba(170, 25, 65, 1);
.text{ .text {
color: #fff; color: #fff;
} }
.icon{ .icon {
display: none; display: none;
} }
.icon-active{ .icon-active {
display: block; display: block;
} }
} }
.text{ .text {
text-align: center; text-align: center;
font-size: 14px; font-size: 14px;
font-weight: 400; font-weight: 400;
...@@ -113,7 +132,7 @@ export default { ...@@ -113,7 +132,7 @@ export default {
} }
} }
} }
.max-width-center{ .max-width-center {
width: 1212px; width: 1212px;
margin: 0 auto; margin: 0 auto;
} }
......
...@@ -70,7 +70,8 @@ export default { ...@@ -70,7 +70,8 @@ export default {
saas: 'SAAS Platform', saas: 'SAAS Platform',
internship: 'internship', internship: 'internship',
x: '1+X', x: '1+X',
cert: 'vocational certificate' cert: 'vocational certificate',
data: '商业数据分析实验室'
}, },
onlineEduChild: { onlineEduChild: {
service: 'business service', service: 'business service',
...@@ -99,12 +100,13 @@ export default { ...@@ -99,12 +100,13 @@ export default {
home: { home: {
college: { college: {
title: '数字经济产业学院', title: '数字经济产业学院',
corePower: '核心能力', corePower: '核心特色',
program: '专业共建', program: '专业共建',
saas: 'SAAS平台', saas: 'SAAS平台',
internship: '实习就业', internship: '实习就业',
x: '1+X', x: '1+X',
cert: '职业证书' cert: '职业证书',
data: '商业数据分析实验室'
}, },
degree: { degree: {
title: 'Degree Education', title: 'Degree Education',
......
...@@ -65,12 +65,13 @@ export default { ...@@ -65,12 +65,13 @@ export default {
} }
}, },
industrialCollegeChild: { industrialCollegeChild: {
corePower: '核心能力', corePower: '核心特色',
program: '专业共建', program: '专业共建',
saas: 'SAAS平台', saas: 'SAAS平台',
internship: '实习就业', internship: '实习就业',
x: '1+X', x: '1+X',
cert: '职业证书' cert: '职业证书',
data: '商业数据分析实验室'
}, },
onlineEduChild: { onlineEduChild: {
service: '业务服务模块', service: '业务服务模块',
...@@ -91,7 +92,7 @@ export default { ...@@ -91,7 +92,7 @@ export default {
tit7: '专业+创新创业' tit7: '专业+创新创业'
}, },
college: { college: {
tit1: '核心能力', tit1: '核心特色',
tit2: '服务项目', tit2: '服务项目',
tit3: '服务案例' tit3: '服务案例'
} }
...@@ -99,12 +100,13 @@ export default { ...@@ -99,12 +100,13 @@ export default {
home: { home: {
college: { college: {
title: '数字经济产业学院', title: '数字经济产业学院',
corePower: '核心能力', corePower: '核心特色',
program: '专业共建', program: '专业共建',
saas: 'SAAS平台', saas: 'SAAS平台',
internship: '实习就业', internship: '实习就业',
x: '1+X', x: '1+X',
cert: '职业证书' cert: '职业证书',
data: '商业数据分析实验室'
}, },
degree: { degree: {
title: '国际教育', title: '国际教育',
...@@ -195,7 +197,7 @@ export default { ...@@ -195,7 +197,7 @@ export default {
project: { project: {
title: '紫荆简介', title: '紫荆简介',
text: text:
'紫荆教育全称是清控紫荆(北京)教育科技股份有限公司,由清华控股有限公司于2015年发起创立。“紫荆”二字取自清华大学校花“紫荆花”,寓意“自强不息,向美而行”。<br />紫荆教育以教育为本、坚持国际化品质标准,通过科技创新、专业创新,为企业、院校及个人学习者,提供国际在线学位教育、国际留学、数字经济产业学院整体解决方案等产品服务,为各行各业培养和输送高质量的国际化和产业化人才。<br />紫荆教育与美国印第安纳大学、加州整合大学、康博斯威尔大学、玛丽伍德大学、索菲亚大学和瑞士高等教育集团等全球知名大学开展深度合作,推出在线MBA、金融学、组织领导力、应用心理学、儿童教育、服务业管理等硕士学位,培养了一大批具有国际先进管理和教育理念的杰出精英。<br />在产教融合方面,依托紫荆教育技术与产业资源优势,以国家教育政策为导向,以企业岗位人才需求为目标,协助院校应对行业变革、政策要求和办学新挑战,为院校提供产业化、国际化、数字化专业提升建设支持,优化人才培养方案,提升师资力量,共同开发精品课程资源,促进教学发展,整体提升专业建设水平,助力院校打造专业特色和优势。', '紫荆教育全称是清控紫荆(北京)教育科技股份有限公司,由清华控股有限公司于2015年发起创立。“紫荆”二字取自清华大学校花“紫荆花”,寓意“自强不息,向美而行”。<br />紫荆教育以教育为本、坚持国际化品质标准,通过科技创新、专业创新,为企业、院校及个人学习者,提供国际在线学位教育、国际留学、数字经济产业学院整体解决方案等产品服务,为各行各业培养和输送高质量的国际化和产业化人才。<br />紫荆教育与美国印第安纳大学、加州浸会大学、加州整合大学、玛丽伍德大学、纽约州立大学石溪分校、康博斯威尔大学、索菲亚大学和瑞士高等教育集团等全球知名大学开展深度合作,推出国际博士2+1、国际硕士1+1留学项目,以及MBA、金融学、应用心理学、教育学、酒店及餐饮管理等在线硕士学位项目,培养了一大批具有国际先进管理和教育理念的杰出精英。<br />在产教融合方面,依托紫荆教育技术与产业资源优势,以国家教育政策为导向,以企业岗位人才需求为目标,协助院校应对行业变革、政策要求和办学新挑战,为院校提供产业化、国际化、数字化专业提升建设支持,优化人才培养方案,提升师资力量,共同开发精品课程资源,促进教学发展,整体提升专业建设水平,助力院校打造专业特色和优势。',
itemText1: '国际合作院校', itemText1: '国际合作院校',
itemText2: '线上课程', itemText2: '线上课程',
itemText3: '金融机构/协会/政府/学校', itemText3: '金融机构/协会/政府/学校',
......
差异被折叠。
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论