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

Merge branch 'new' into dev

...@@ -37,7 +37,8 @@ export default { ...@@ -37,7 +37,8 @@ export default {
font-size: 32px; font-size: 32px;
font-weight: bold; font-weight: bold;
line-height: 1; line-height: 1;
text-align: v-bind(titleAlign); // text-align: v-bind(titleAlign);
text-align: center;
a:hover { a:hover {
color: var(--main-color); color: var(--main-color);
} }
......
...@@ -141,8 +141,8 @@ export default { ...@@ -141,8 +141,8 @@ export default {
{ label: '领航数字时代EMBA', value: '1026' }, { label: '领航数字时代EMBA', value: '1026' },
{ label: this.$t('aside.project1'), value: '1012' }, { label: this.$t('aside.project1'), value: '1012' },
{ label: this.$t('aside.project3'), value: '1008' }, { label: this.$t('aside.project3'), value: '1008' },
{ label: this.$t('aside.project9'), value: '1015' }, // { label: this.$t('aside.project9'), value: '1015' },
{ label: this.$t('aside.project4'), value: '1001' } // { label: this.$t('aside.project4'), value: '1001' }
] ]
} else { } else {
return [ return [
...@@ -152,8 +152,9 @@ export default { ...@@ -152,8 +152,9 @@ export default {
{ label: '纽约州立大学石溪分校金融学硕士项目', value: '1018' }, { label: '纽约州立大学石溪分校金融学硕士项目', value: '1018' },
{ label: '德保罗大学金融学硕士项目', value: '1025' }, { label: '德保罗大学金融学硕士项目', value: '1025' },
{ label: '斯蒂文斯理工学院工程管理硕士项目', value: '1020' }, { label: '斯蒂文斯理工学院工程管理硕士项目', value: '1020' },
{ label: '加州浸会大学全日制工商管理博士项目', value: '1017' }, { label: '雪城大学硕士保研项目', value: '1028' }
{ label: '加州浸会大学全球科技创新管理学者DBA项目', value: '1023' } // { label: '加州浸会大学全日制工商管理博士项目', value: '1017' },
// { label: '加州浸会大学全球科技创新管理学者DBA项目', value: '1023' }
] ]
} }
} }
......
...@@ -7,11 +7,10 @@ ...@@ -7,11 +7,10 @@
<img <img
:src=" :src="
$cookies.get('lang') == 'en-US' $cookies.get('lang') == 'en-US'
? 'https://webapp-pub.ezijing.com/www/pc/en-logo.png' ? 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/logo/en-logo.png'
: 'https://zws-imgs-pub.ezijing.com/static/public/0411340f9306b908eda54b5d66668f50.png' : 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/logo/us-logo.png'
" "
@click="goPage('/')" @click="goPage('/')" />
/>
</div> </div>
<template v-if="$route.path === '/roadmap'"> <template v-if="$route.path === '/roadmap'">
<client-only> <client-only>
...@@ -52,32 +51,29 @@ ...@@ -52,32 +51,29 @@
<div <div
:class="$route.path === level2Item.path || level2Item.isShow ? 'li active' : 'li'" :class="$route.path === level2Item.path || level2Item.isShow ? 'li active' : 'li'"
@mouseenter="levelShow(level2Item)" @mouseenter="levelShow(level2Item)"
@mouseleave="levelShow(level2Item, 'out')" @mouseleave="levelShow(level2Item, 'out')">
>
<div <div
@click="goPage(level2Item.path, level2Item.pathType)" @click="goPage(level2Item.path, level2Item.pathType)"
class="name" class="name"
:class="isEn === true ? 'name1' : ''" :class="isEn === true ? 'name1' : ''"
v-html="level2Item.name" v-html="level2Item.name"></div>
></div>
<div class="el-icon-arrow-right" v-if="level2Item.children"></div> <div class="el-icon-arrow-right" v-if="level2Item.children"></div>
</div> </div>
</template> </template>
</div> </div>
<!-- v-if="level2Item.isShow" -->
<template v-for="(level2Item, level2Index) in item.children"> <template v-for="(level2Item, level2Index) in item.children">
<div <div
class="two-level" class="two-level"
:key="level2Index + 'two-level2'" :key="level2Index + 'two-level2'"
v-if="level2Item.isShow" v-if="level2Item.isShow"
@mouseenter="level3Show" @mouseenter="level3Show"
@mouseleave="level3Show(level2Item, 'out')" @mouseleave="level3Show(level2Item, 'out')">
>
<div <div
@click="goPage(level3Item.path, level3Item.pathType)" @click="goPage(level3Item.path, level3Item.pathType)"
:class="isEn === true ? 'name1' : 'name'" :class="isEn === true ? 'name1' : 'name'"
v-for="(level3Item, level3Index) in level2Item.children" v-for="(level3Item, level3Index) in level2Item.children"
:key="level3Index + level3Item" :key="level3Index + level3Item">
>
{{ level3Item.name }} {{ level3Item.name }}
</div> </div>
</div> </div>
...@@ -134,7 +130,7 @@ export default { ...@@ -134,7 +130,7 @@ export default {
path: '/digital/yx_1', path: '/digital/yx_1',
children: [ children: [
{ {
name: '院校', name: '院&nbsp;校',
isShow: false, isShow: false,
children: [ children: [
{ {
...@@ -165,7 +161,7 @@ export default { ...@@ -165,7 +161,7 @@ export default {
] ]
}, },
{ {
name: '政府', name: '政&nbsp;府',
isShow: false, isShow: false,
children: [ children: [
{ {
...@@ -174,6 +170,10 @@ export default { ...@@ -174,6 +170,10 @@ export default {
} }
] ]
}, },
{
name: '数字教材',
path: '/digital/sz'
},
{ {
name: '职业技能大赛', name: '职业技能大赛',
path: '/digital/ds' path: '/digital/ds'
...@@ -329,11 +329,11 @@ export default { ...@@ -329,11 +329,11 @@ export default {
name: this.$t('menu.degreeChild.master'), name: this.$t('menu.degreeChild.master'),
isShow: false, isShow: false,
children: [ children: [
{ // {
name: this.$t('menu.degreeChild.masterChild.msf'), // name: this.$t('menu.degreeChild.masterChild.msf'),
path: 'https://kelley.ezijing.com', // path: 'https://kelley.ezijing.com',
pathType: 1 // pathType: 1
}, // },
{ {
name: this.$t('menu.degreeChild.masterChild.med'), name: this.$t('menu.degreeChild.masterChild.med'),
path: 'https://cu.ezijing.com', path: 'https://cu.ezijing.com',
...@@ -376,32 +376,43 @@ export default { ...@@ -376,32 +376,43 @@ export default {
path: 'https://shms.ezijing.com', path: 'https://shms.ezijing.com',
pathType: 1 pathType: 1
}, },
{ // {
name: this.$t('menu.degreeChild.mbaChild.caas'), // name: this.$t('menu.degreeChild.mbaChild.caas'),
path: 'https://caas.ezijing.com', // path: 'https://caas.ezijing.com',
pathType: 1 // pathType: 1
} // }
] ]
}, // },
{ // {
name: '工商管理博士DBA', // name: '工商管理博士DBA',
isShow: false, // isShow: false,
children: [ // children: [
{ // {
name: '全球科技创新管理学者项目', // name: '全球科技创新管理学者项目',
path: 'https://cbu-online.ezijing.com/', // path: 'https://cbu-online.ezijing.com/',
pathType: 1 // pathType: 1
} // }
] // ]
// },
// {
// name: '企业家学者DBA',
// isShow: false,
// children: [
// {
// name: '数字领导力企业家学者(DBA)',
// path: 'https://dld.ezijing.com/',
// pathType: 1
// }
// ]
}, },
{ {
name: '企业家学者DBA', name: 'DBA',
isShow: false, isShow: false,
children: [ children: [
{ {
name: '数字领导力企业家学者(DBA)', name: '科创方向DBA',
path: 'https://dld.ezijing.com/', path: 'https://ppai.ezijing.com/',
pathType: 1 pathType: 1
} }
] ]
...@@ -417,8 +428,8 @@ export default { ...@@ -417,8 +428,8 @@ export default {
isShow: false, isShow: false,
children: [ children: [
{ {
name: this.$t('menu.degreeChild.masterChild.sbu'), name: '雪城大学硕士保研项目',
path: 'https://sbu-plus.ezijing.com/', path: 'https://syracuse-plus.ezijing.com/',
pathType: 1 pathType: 1
}, },
{ {
...@@ -427,38 +438,39 @@ export default { ...@@ -427,38 +438,39 @@ export default {
pathType: 1 pathType: 1
}, },
{ {
name: '北京理工大学1+1硕士留学-德保罗大学金融学硕士项目', name: this.$t('menu.degreeChild.masterChild.sbu'),
path: 'https://depaul-plus.ezijing.com/', path: 'https://sbu-plus.ezijing.com/',
pathType: 1 pathType: 1
}, },
{ {
name: '雪城大学硕士保研项目', name: '北京理工大学1+1硕士留学-德保罗大学金融学硕士项目',
path: 'https://syracuse-plus.ezijing.com/', path: 'https://depaul-plus.ezijing.com/',
pathType: 1 pathType: 1
} }
// { // {
// name: '迈阿密大学硕士保研项目', // name: '迈阿密大学硕士保研项目',
// path: 'https://umiami-plus.ezijing.com/', // path: 'https://umiami-plus.ezijing.com/',
// pathType: 1 // pathType: 1
// } // }
] ]
},
{
name: this.$t('menu.degreeChild.doctor'),
isShow: false,
children: [
{
name: this.$t('menu.degreeChild.doctorChild.cbu_plus'),
path: 'https://cbu-plus.ezijing.com/',
pathType: 1
} }
// { // {
// name: this.$t('menu.degreeChild.doctorChild.cbu_online'), // name: this.$t('menu.degreeChild.doctor'),
// path: 'https://cbu-online.ezijing.com/', // isShow: false,
// children: [
// {
// name: this.$t('menu.degreeChild.doctorChild.cbu_plus'),
// path: 'https://cbu-plus.ezijing.com/',
// pathType: 1 // pathType: 1
// } // }
] // // {
} // // name: this.$t('menu.degreeChild.doctorChild.cbu_online'),
// // path: 'https://cbu-online.ezijing.com/',
// // pathType: 1
// // }
// ]
// }
] ]
}, },
{ {
...@@ -753,6 +765,7 @@ li { ...@@ -753,6 +765,7 @@ li {
color: #333333; color: #333333;
font-size: 16px; font-size: 16px;
white-space: nowrap; white-space: nowrap;
letter-spacing: 1px;
a { a {
color: #333333; color: #333333;
font-size: 16px; font-size: 16px;
...@@ -777,7 +790,7 @@ li { ...@@ -777,7 +790,7 @@ li {
} }
.two-level { .two-level {
pointer-events: auto; pointer-events: auto;
padding: 34px 41px 0 24px; padding: 34px 0 0 0px;
.name1 { .name1 {
font-size: 16px; font-size: 16px;
font-weight: 400; font-weight: 400;
...@@ -802,10 +815,13 @@ li { ...@@ -802,10 +815,13 @@ li {
font-weight: 400; font-weight: 400;
line-height: 20px; line-height: 20px;
color: #333333; color: #333333;
margin-bottom: 36px; margin-bottom: 16px;
padding: 8px 41px 8px 24px;
white-space: nowrap; white-space: nowrap;
// padding-left: 24px;
&:hover { &:hover {
color: rgba(170, 25, 65, 1); color: rgba(170, 25, 65, 1);
background: #ededed;
} }
a { a {
font-size: 16px; font-size: 16px;
......
<template> <template>
<AppCard :title="title" style="margin-top:50px;"> <AppCard :title="title" style="margin-top: 50px">
<template #header-aside><nuxt-link :to="baseUrl" v-if="baseUrl">查看更多+</nuxt-link></template> <template #header-aside><nuxt-link :to="baseUrl" v-if="baseUrl">查看更多+</nuxt-link></template>
<div class="project-list"> <div :class="className ? className : 'project-list'">
<div class="project-item" v-for="(item, index) in list" :key="index"> <div class="project-item" v-for="(item, index) in list" :key="index">
<!-- <AppLink :data="item"><img :src="item.imgUrl"/></AppLink> --> <!-- <AppLink :data="item"><img :src="item.imgUrl"/></AppLink> -->
<div <div
class="project-item-pic" class="project-item-pic"
:style=" :style="isEn ? `background:url(${item.imgUrlEn}) no-repeat center / 100% 100%;` : `background:url(${item.imgUrl}) no-repeat center / 100% 100%; `">
isEn
? `background:url(${item.imgUrlEn}) no-repeat center / 100% 100%;`
: `background:url(${item.imgUrl}) no-repeat center / 100% 100%; `
"
>
<!-- <img :src="item.imgUrl" /> --> <!-- <img :src="item.imgUrl" /> -->
<ul class="tools"> <ul class="tools">
<li @click="handleSubmit(item)">{{ isEn ? 'Register' : '我要报名' }}</li> <li @click="handleSubmit(item)">{{ isEn ? 'Register' : '我要报名' }}</li>
...@@ -37,7 +32,7 @@ import AppLink from '@/components/Link.vue' ...@@ -37,7 +32,7 @@ import AppLink from '@/components/Link.vue'
export default { export default {
name: 'ProjectCard', name: 'ProjectCard',
props: { list: { type: Array, default: () => [] }, title: String, baseUrl: String }, props: { list: { type: Array, default: () => [] }, title: String, baseUrl: String, className: String },
components: { AppCard, AppLink }, components: { AppCard, AppLink },
data() { data() {
return { return {
...@@ -70,8 +65,7 @@ export default { ...@@ -70,8 +65,7 @@ export default {
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
row-gap: 20px; row-gap: 20px;
column-gap: 20px; column-gap: 20px;
} .project-item {
.project-item {
background-color: #fff; background-color: #fff;
.project-item-pic { .project-item-pic {
height: 360px; height: 360px;
...@@ -111,5 +105,53 @@ export default { ...@@ -111,5 +105,53 @@ export default {
border-left: 1px solid #c9c9c9; border-left: 1px solid #c9c9c9;
} }
} }
}
}
.project-list2 {
display: grid;
grid-template-columns: repeat(2, 1fr);
row-gap: 37px;
column-gap: 37px;
.project-item {
background-color: #fff;
.project-item-pic {
height: 230px;
overflow: hidden;
position: relative;
}
img {
width: 100%;
}
&:hover {
box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.3);
}
.tools {
position: absolute;
bottom: 15px;
right: 0;
display: flex;
justify-content: center;
width: 350px;
li {
flex: 1;
font-size: 16px;
font-weight: 400;
color: #4d4d4d;
text-align: center;
cursor: pointer;
// &:hover {
// font-weight: 500;
// color: #333333;
// }
}
li:first-child {
color: #af1c40;
}
li + li {
border-left: 1px solid #c9c9c9;
}
}
}
} }
</style> </style>
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col" v-for="item in list" :key="item.title"> <div class="col" v-for="item in list" :key="item.title">
<div class="title"> <div class="title">
<h2>{{ item.title }}</h2> <h2 v-html="item.title"></h2>
<p>{{ item.desc }}</p> <p>{{ item.desc }}</p>
</div> </div>
<ul> <ul>
...@@ -22,19 +22,33 @@ ...@@ -22,19 +22,33 @@
</ul> </ul>
</div> </div>
</div> </div>
<div class="col2"> <div class="col3" v-for="item in newList2">
<div class="left">{{ item.title }}</div>
<div class="right">
<template v-for="cItem in item.children">
<AppLink :to="cItem.path">
<div class="item">
<img :src="cItem.icon" class="img" />
<img :src="cItem.hoverIcon" class="imga" />
<div class="name">{{ cItem.name }}</div>
</div>
</AppLink>
</template>
</div>
</div>
<!-- <div class="col2">
<ul> <ul>
<li class="item is-hover" v-for="item in list2" :key="item.title" :style="item.style"> <li class="item" v-for="item in list2" :key="item.title" :style="item.style">
<AppLink :to="item.path"> <AppLink :to="item.path">
<div class="item-inner"> <div class="item-inner">
<img :src="item.icon" class="img" /> <img :src="item.icon" class="img" />
<img :src="item.hoverIcon" class="hover-img" /> <img :src="item.hoverIcon" class="hover-img" />
{{ item.title }} &nbsp;{{ item.title }}
</div> </div>
</AppLink> </AppLink>
</li> </li>
</ul> </ul>
</div> </div> -->
</AppCard> </AppCard>
</template> </template>
...@@ -46,7 +60,7 @@ export default { ...@@ -46,7 +60,7 @@ export default {
return { return {
list: [ list: [
{ {
title: '院校', title: '院&nbsp校',
desc: '数字人才核心能力培养解决方案', desc: '数字人才核心能力培养解决方案',
children: [ children: [
{ {
...@@ -89,7 +103,7 @@ export default { ...@@ -89,7 +103,7 @@ export default {
] ]
}, },
{ {
title: '政府', title: '政&nbsp;府',
desc: '数字技能公共实训基地', desc: '数字技能公共实训基地',
children: [ children: [
{ {
...@@ -144,11 +158,65 @@ export default { ...@@ -144,11 +158,65 @@ export default {
], ],
list2: [ list2: [
{ {
icon: 'https://webapp-pub.ezijing.com/www/pc/digital/icon/yx_2.png', icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/digital/szz/sz_icon.png',
hoverIcon: 'https://webapp-pub.ezijing.com/www/pc/digital/icon/yx_2_hover.png', hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/digital/szz/sz_icon_hover.png',
title: '数字教材',
path: 'digital/sz'
},
{
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/digital/szz/yx_2_new.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/digital/szz/yx_2_new_hover.png',
title: '职业技能大赛', title: '职业技能大赛',
path: 'digital/ds' path: 'digital/ds'
} }
],
newList2: [
{
title: '职业技能大赛',
children: [
{
name: '国赛',
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/ds-icon1.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/ds-icon1a.png',
path: 'digital/ds'
},
{
name: '省赛',
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/ds-icon2.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/ds-icon2a.png',
path: 'digital/ds'
},
{
name: '行业赛',
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/ds-icon3.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/ds-icon3a.png',
path: 'digital/ds'
}
]
},
{
title: '数字教材',
children: [
{
name: '数字教材编辑器',
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/jc-icon1.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/jc-icon1a.png',
path: 'digital/sz'
},
{
name: '数字教材出版',
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/jc-icon2.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/jc-icon2a.png',
path: 'digital/sz'
},
{
name: '数智化教学',
icon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/jc-icon3.png',
hoverIcon: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/240531/jc-icon3a.png',
path: 'digital/sz'
}
]
}
] ]
} }
} }
...@@ -163,6 +231,7 @@ export default { ...@@ -163,6 +231,7 @@ export default {
.col { .col {
flex: 1; flex: 1;
background-color: #fff; background-color: #fff;
box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.16);
&:first-child { &:first-child {
flex: 0 0 694px; flex: 0 0 694px;
} }
...@@ -192,7 +261,7 @@ export default { ...@@ -192,7 +261,7 @@ export default {
gap: 20px; gap: 20px;
} }
li { li {
border: 1px solid #d5d5d5; // border: 1px solid #d5d5d5;
width: 198px; width: 198px;
height: 128px; height: 128px;
font-size: 16px; font-size: 16px;
...@@ -239,6 +308,10 @@ export default { ...@@ -239,6 +308,10 @@ export default {
height: 60px; height: 60px;
font-size: 16px; font-size: 16px;
color: #666; color: #666;
margin-right: 60px;
.img {
margin-left: 15px;
}
.hover-img { .hover-img {
display: none; display: none;
} }
...@@ -261,4 +334,56 @@ export default { ...@@ -261,4 +334,56 @@ export default {
justify-content: center; justify-content: center;
} }
} }
.col3 {
display: flex;
background-color: #fff;
margin-top: 30px;
box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.16);
.left {
min-width: 259px;
line-height: 104px;
background: #aa1941;
font-weight: bold;
font-size: 26px;
color: #ffffff;
text-align: center;
}
.right {
display: flex;
justify-content: space-around;
align-items: center;
flex: 1;
.item {
display: flex;
align-items: center;
width: 220px;
line-height: 64px;
// border: 1px solid #d5d5d5;
&:hover {
background-color: #aa1941;
.name {
color: #fff;
}
.img {
display: none;
}
.imga {
display: block;
}
}
img {
margin-left: 30px;
}
.imga {
display: none;
}
.name {
margin-left: 5px;
font-size: 16px;
color: #6c6c6c;
letter-spacing: 2px;
}
}
}
}
</style> </style>
...@@ -37,11 +37,11 @@ export default { ...@@ -37,11 +37,11 @@ export default {
desc: this.$t('home.degree.med'), desc: this.$t('home.degree.med'),
href: 'https://cu.ezijing.com/' href: 'https://cu.ezijing.com/'
}, },
{ // {
img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/master_msf.png', // img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/master_msf.png',
desc: this.$t('home.degree.msf'), // desc: this.$t('home.degree.msf'),
href: 'https://kelley.ezijing.com/' // href: 'https://kelley.ezijing.com/'
}, // },
{ {
img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/master_map.png', img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/master_map.png',
desc: this.$t('home.degree.map'), desc: this.$t('home.degree.map'),
...@@ -67,33 +67,33 @@ export default { ...@@ -67,33 +67,33 @@ export default {
desc: this.$t('home.degree.international'), desc: this.$t('home.degree.international'),
href: 'https://shms.ezijing.com/' href: 'https://shms.ezijing.com/'
}, },
{ // {
img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/mba3.png', // img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/mba3.png',
desc: this.$t('home.degree.caas'), // desc: this.$t('home.degree.caas'),
href: 'https://caas.ezijing.com/' // href: 'https://caas.ezijing.com/'
} // }
]
},
{
title: '博士',
children: [
{
img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/cbu-online.png',
desc: '加州浸会大学<br/>工商管理博士DBA',
href: 'https://cbu-online.ezijing.com/'
}
] ]
}, },
{ // {
title: '企业家学者DBA', // title: '博士',
children: [ // children: [
{ // {
img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/cbu-enterprise.png', // img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/cbu-online.png',
desc: '数字领导力<br/>企业家学者DBA', // desc: '加州浸会大学<br/>工商管理博士DBA',
href: 'https://dld.ezijing.com/' // href: 'https://cbu-online.ezijing.com/'
} // }
] // ]
} // },
// {
// title: '企业家学者DBA',
// children: [
// {
// img: 'https://webapp-pub.ezijing.com/www/pc/home/personal/cbu-enterprise.png',
// desc: '数字领导力<br/>企业家学者DBA',
// href: 'https://dld.ezijing.com/'
// }
// ]
// }
] ]
} }
} }
......
...@@ -65,14 +65,14 @@ export default { ...@@ -65,14 +65,14 @@ export default {
{ label: this.$t('aside.project6'), value: '1005' }, { label: this.$t('aside.project6'), value: '1005' },
{ label: this.$t('aside.project8'), value: '1021' }, { label: this.$t('aside.project8'), value: '1021' },
{ label: this.$t('aside.project3'), value: '1008' }, { label: this.$t('aside.project3'), value: '1008' },
{ label: this.$t('aside.project9'), value: '1015' }, // { label: this.$t('aside.project9'), value: '1015' },
{ label: this.$t('aside.project4'), value: '1001' }, // { label: this.$t('aside.project4'), value: '1001' },
// { label: '工商管理硕士保研项目', value: '1016' }, // { label: '工商管理硕士保研项目', value: '1016' },
// { label: '管理信息系统硕士保研项目', value: '9999' }, // { label: '管理信息系统硕士保研项目', value: '9999' },
{ label: this.$t('aside.project10'), value: '1018' }, { label: this.$t('aside.project10'), value: '1018' },
{ label: this.$t('aside.project11'), value: '1017' }, // { label: this.$t('aside.project11'), value: '1017' },
{ label: this.$t('aside.project12'), value: '1020' }, { label: this.$t('aside.project12'), value: '1020' },
{ label: this.$t('aside.project13'), value: '1023' } // { label: this.$t('aside.project13'), value: '1023' }
] ]
} }
}, },
......
...@@ -221,7 +221,7 @@ export default { ...@@ -221,7 +221,7 @@ export default {
} }
}, },
foot: { foot: {
address: '地&nbsp;&nbsp;&nbsp;&nbsp;址:北京市海淀区中关村东路1号院清华科技园7号楼5层', address: '地&nbsp;&nbsp;&nbsp;&nbsp;址:北京市海淀区北四环西路52号方正国际大厦5层501',
contact: `联系电话:010-62793909`, contact: `联系电话:010-62793909`,
email: '邮&nbsp;&nbsp;&nbsp;&nbsp;箱:service@ezijing.com', email: '邮&nbsp;&nbsp;&nbsp;&nbsp;箱:service@ezijing.com',
link1: '中华人民共和国教育部教育涉外监管信息网', link1: '中华人民共和国教育部教育涉外监管信息网',
...@@ -314,7 +314,7 @@ export default { ...@@ -314,7 +314,7 @@ export default {
}, },
contact: { contact: {
lxTit: '联系我们', lxTit: '联系我们',
contactTxt: `地&nbsp;&nbsp;址:北京市海淀区中关村东路1号院清华科技园7号楼5层<br /> contactTxt: `地&nbsp;&nbsp;址:北京市海淀区北四环西路52号方正国际大厦5层501<br />
联系电话:010-62793909<br /> 联系电话:010-62793909<br />
邮&nbsp;&nbsp;箱:service@ezijing.com`, 邮&nbsp;&nbsp;箱:service@ezijing.com`,
follow: '关注我们', follow: '关注我们',
......
...@@ -43,21 +43,21 @@ export default { ...@@ -43,21 +43,21 @@ export default {
}, },
mounted() { mounted() {
if (process.browser) { if (process.browser) {
!(function (mapInit) { !(function(mapInit) {
var script = document.createElement('script') var script = document.createElement('script')
script.type = 'text/javascript' script.type = 'text/javascript'
script.src = 'https://api.map.baidu.com/api?v=2.0&ak=Z9Km7UTGFI2fwRrpGp7Mji4ySDsvn30d&callback=mapinit' script.src = 'https://api.map.baidu.com/api?v=2.0&ak=Z9Km7UTGFI2fwRrpGp7Mji4ySDsvn30d&callback=mapinit'
window['mapinit'] = function () { window['mapinit'] = function() {
mapInit() mapInit()
} }
document.head.appendChild(script) document.head.appendChild(script)
})(function () { })(function() {
// 这里使用BMap // 这里使用BMap
var map = new BMap.Map('allmap') var map = new BMap.Map('allmap')
map.centerAndZoom(new BMap.Point(116.336323, 39.998848), 20) map.centerAndZoom(new BMap.Point(116.319701, 39.990591), 20)
map.enableScrollWheelZoom(true) map.enableScrollWheelZoom(true)
// 创建点标记 // 创建点标记
var marker1 = new BMap.Marker(new BMap.Point(116.336323, 39.998848)) var marker1 = new BMap.Marker(new BMap.Point(116.319701, 39.990591))
map.addOverlay(marker1) map.addOverlay(marker1)
}) })
} }
......
...@@ -265,7 +265,7 @@ export default { ...@@ -265,7 +265,7 @@ export default {
justify-content: space-between; justify-content: space-between;
.sx-list_item { .sx-list_item {
width: 370px; width: 370px;
border: 1px solid #dbdbdb; // border: 1px solid #dbdbdb;
padding: 19px 25px 25px; padding: 19px 25px 25px;
box-sizing: border-box; box-sizing: border-box;
cursor: pointer; cursor: pointer;
......
差异被折叠。
...@@ -243,7 +243,7 @@ export default { ...@@ -243,7 +243,7 @@ export default {
} }
} }
.is-border { .is-border {
border: 1px solid #d5d5d5; // border: 1px solid #d5d5d5;
} }
.gk-list { .gk-list {
margin-top: 100px; margin-top: 100px;
...@@ -254,7 +254,7 @@ export default { ...@@ -254,7 +254,7 @@ export default {
.gk-item { .gk-item {
min-height: 280px; min-height: 280px;
text-align: center; text-align: center;
background: #fff; // background: #fff;
transition: all 0.3s; transition: all 0.3s;
&:hover { &:hover {
transform: scale(1.06); transform: scale(1.06);
...@@ -299,7 +299,7 @@ export default { ...@@ -299,7 +299,7 @@ export default {
font-family: Source Han Sans CN; font-family: Source Han Sans CN;
font-weight: 500; font-weight: 500;
line-height: 24px; line-height: 24px;
color: #333; color: #AA1941;
} }
p { p {
margin: 12px 0; margin: 12px 0;
......
...@@ -193,12 +193,12 @@ export default { ...@@ -193,12 +193,12 @@ export default {
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/internationalDegree/project_shms_en.png', imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/internationalDegree/project_shms_en.png',
href: 'https://shms.ezijing.com/' href: 'https://shms.ezijing.com/'
}, },
{ // {
project_id: '1015', // project_id: '1015',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/internationalDegree/project_caas.png', // imgUrl: 'https://webapp-pub.ezijing.com/www/pc/internationalDegree/project_caas.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/internationalDegree/project_caas_en.png', // imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/internationalDegree/project_caas_en.png',
href: 'https://caas.ezijing.com/' // href: 'https://caas.ezijing.com/'
} // }
], ],
// 常见问题 // 常见问题
qaList, qaList,
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</div> </div>
<FormSubmit :type="2" id="form" ref="formSubmit"></FormSubmit> <FormSubmit :type="2" id="form" ref="formSubmit"></FormSubmit>
<div class="w1200"> <div class="w1200">
<ProjectCard :title="isEn ? 'Popular Programs' : '热门专业'" :list="projectList"></ProjectCard> <ProjectCard className="project-list2" :title="isEn ? 'Popular Programs' : '热门专业'" :list="projectList"></ProjectCard>
<!-- <div class="why"> <!-- <div class="why">
<h1 class="why-title">为什么选择紫荆教育的国际留学课程?</h1> <h1 class="why-title">为什么选择紫荆教育的国际留学课程?</h1>
<div class="why-list"> <div class="why-list">
...@@ -35,7 +35,13 @@ ...@@ -35,7 +35,13 @@
</app-card> --> </app-card> -->
<app-card :title="isEn ? 'Application' : '申请流程'" style="margin-top: 68px"> <app-card :title="isEn ? 'Application' : '申请流程'" style="margin-top: 68px">
<div class="process"> <div class="process">
<img :src="isEn ? 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/process_en.png' : 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/process.png'" /> <img
:src="
isEn
? 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/process_en.png'
: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/process.png'
"
/>
</div> </div>
</app-card> </app-card>
<app-card :title="isEn ? 'Application Guide' : '报考指南'" style="margin-top: 74px"> <app-card :title="isEn ? 'Application Guide' : '报考指南'" style="margin-top: 74px">
...@@ -95,11 +101,11 @@ export default { ...@@ -95,11 +101,11 @@ export default {
{ {
web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner1.png', web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner1.png',
web_img_uri_en: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner1_en.png' web_img_uri_en: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner1_en.png'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner3.png',
web_img_uri_en: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner3_en.png'
} }
// {
// web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner3.png',
// web_img_uri_en: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/banner3_en.png'
// }
], ],
swiperOption: { swiperOption: {
speed: 400, speed: 400,
...@@ -148,25 +154,49 @@ export default { ...@@ -148,25 +154,49 @@ export default {
// 热门专业 // 热门专业
projectList: [ projectList: [
{ {
project_id: '1019', project_id: '1020',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_ucr.png', imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sit_new.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_ucr_en.png', imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sit_new.png',
onClick: this.showMessage href: 'https://sit-plus.ezijing.com/'
// href: 'https://cbu-plus.ezijing.com/' },
{
project_id: '1028',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_syracuse_new.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_syracuse_new.png',
href: 'https://syracuse-plus.ezijing.com/'
}, },
{ {
project_id: '1018', project_id: '1018',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sbu.png', imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sbu_new.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sbu_en.png', imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sbu_new.png',
href: 'https://sbu-plus.ezijing.com/' href: 'https://sbu-plus.ezijing.com/'
}, },
{ {
project_id: '1020', project_id: '1025',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sit.png', imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_depaul_new.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sit_en.png', imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_depaul_new.png',
href: 'https://sit-plus.ezijing.com/' href: 'https://depaul-plus.ezijing.com/'
}, }
// {
// project_id: '1019',
// imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_ucr.png',
// imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_ucr_en.png',
// onClick: this.showMessage
// // href: 'https://cbu-plus.ezijing.com/'
// },
// {
// project_id: '1018',
// imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sbu.png',
// imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sbu_en.png',
// href: 'https://sbu-plus.ezijing.com/'
// },
// {
// project_id: '1020',
// imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sit.png',
// imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_sit_en.png',
// href: 'https://sit-plus.ezijing.com/'
// },
// { // {
// project_id: '1016', // project_id: '1016',
...@@ -180,30 +210,38 @@ export default { ...@@ -180,30 +210,38 @@ export default {
// href: 'https://marywood-plus.ezijing.com/' // href: 'https://marywood-plus.ezijing.com/'
// }, // },
{ // {
project_id: '1017', // project_id: '1017',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_plus.png', // imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_plus.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_plus_en.png', // imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_plus_en.png',
href: 'https://cbu-plus.ezijing.com/' // href: 'https://cbu-plus.ezijing.com/'
}, // },
{ // {
project_id: '1023', // project_id: '1023',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_online.png', // imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_online.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_online_en.png', // imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_cbu_online_en.png',
href: 'https://cbu-online.ezijing.com/' // href: 'https://cbu-online.ezijing.com/'
}, // },
{ // {
project_id: '1025', // project_id: '1025',
imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_depaul_plus.png', // imgUrl: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_depaul_plus.png',
imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_depaul_plus.png', // imgUrlEn: 'https://webapp-pub.ezijing.com/www/pc/studyAbroad/project_depaul_plus.png',
href: 'https://depaul-plus.ezijing.com/' // href: 'https://depaul-plus.ezijing.com/'
} // }
], ],
// 常见问题 // 常见问题
qaList, qaList,
// 最新动态请求参数 // 最新动态请求参数
newsParams: { newsParams: {
project_ids: ['25634964940156928', '25634688011239424', '6886139536666001408', '62110451281973248', '78616692432879616', '147349767330201600'], project_ids: [
'25634964940156928',
'25634688011239424',
'6886139536666001408',
'62110451281973248',
'78616692432879616',
'147349767330201600',
'210777554510323712'
],
type_tag: 'article_news_hot', type_tag: 'article_news_hot',
page: 1, page: 1,
limit: 4 limit: 4
......
...@@ -26,7 +26,7 @@ export default { ...@@ -26,7 +26,7 @@ export default {
remote: { remote: {
httpRequest: getArticleList, httpRequest: getArticleList,
params: { params: {
project_ids: ['25634964940156928', '25634688011239424', '6886139536666001408', '62110451281973248', '78616692432879616', '147349767330201600'], project_ids: ['25634964940156928', '25634688011239424', '6886139536666001408', '62110451281973248', '78616692432879616', '147349767330201600', '210777554510323712'],
type_tag: 'article_news_hot' type_tag: 'article_news_hot'
} }
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论