提交 94051b0d authored 作者: lihuihui's avatar lihuihui 提交者: 王鹏飞

新增页面,页面修改

上级 174e8713
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
{{ HEAD }}
</head>
<body {{ BODY_ATTRS }}>
{{ APP }}
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?d07ebd7fc0b0319273df23497cf520d2";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>
...@@ -158,6 +158,15 @@ export default { ...@@ -158,6 +158,15 @@ export default {
{ {
name: this.$t('menu.servicesChild.onlineChild.joint'), name: this.$t('menu.servicesChild.onlineChild.joint'),
pathType: 3 pathType: 3
},
{
name: '核心能力概括',
path: '/services/solution'
},
{
name: '联合运营案例-私人财富风险管理顾问(PRP)',
path: 'https://prp.ezijing.com/',
pathType: 1
} }
] ]
} }
......
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
</div> --> </div> -->
<div class="swiper-slide"> <div class="swiper-slide">
<div class="li"> <div class="li">
<div class="txt">SHMS✖️Wanda终身学习计划说明会</div> <div class="txt">2021年第二期“1+X 金融产品数字化营销职业技能等级证书(中级)”师资培训班</div>
<div class="time">06月24</div> <div class="time">06月27</div>
</div> </div>
</div> </div>
<div class="swiper-slide"> <div class="swiper-slide">
...@@ -176,7 +176,7 @@ export default { ...@@ -176,7 +176,7 @@ export default {
width: 430px; width: 430px;
font-size: 18px; font-size: 18px;
font-weight: 400; font-weight: 400;
line-height: 100%; // line-height: 100%;
color: #424242; color: #424242;
text-align: center; text-align: center;
} }
......
<template>
<div class="main-container" style="padding:50px">
<h1 v-if="error.statusCode === 404">Page not found</h1>
<h1 v-else>An error occurred</h1>
<NuxtLink to="/">返回首页</NuxtLink>
</div>
</template>
<script>
export default {
props: ['error'],
layout: 'error',
middleware: [
function ({ redirect }) {
return redirect(301, '/el?e=rnf')
}
]
}
</script>
\ No newline at end of file
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
<div class="mian"> <div class="mian">
<div class="occupation-content-mian"> <div class="occupation-content-mian">
<div class="module-1 module-content-box"> <div class="module-1 module-content-box">
<img src="https://webapp-pub.ezijing.com/www/pc/emp-banner.png" alt="" class="banner" /> <!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-banner.png" alt="" class="banner" /> -->
<div class="content-mian"> <div class="content-mian">
<img src="https://webapp-pub.ezijing.com/www/pc/emp-con1-new.png" alt="" class="img1" /> <img src="https://webapp-pub.ezijing.com/www/pc/emp624txt1.png" alt="" class="img1" />
<img src="https://webapp-pub.ezijing.com/www/pc/emp-con2.png" alt="" class="img2" /> <img src="https://webapp-pub.ezijing.com/www/pc/emp624-tit1.png" alt="" class="img2" />
<ul> <ul>
<li v-for="(item, index) in list" :key="index"> <li v-for="(item, index) in list" :key="index">
<img :src="item.image" alt="" /> <img :src="item.image" alt="" />
...@@ -28,7 +28,27 @@ ...@@ -28,7 +28,27 @@
<img src="https://webapp-pub.ezijing.com/www/pc/emp-con4.png" alt="" class="img4" /> <img src="https://webapp-pub.ezijing.com/www/pc/emp-con4.png" alt="" class="img4" />
<img src="https://webapp-pub.ezijing.com/www/pc/emp-con5-new1.png" alt="" class="img5" /> <img src="https://webapp-pub.ezijing.com/www/pc/emp-con5-new1.png" alt="" class="img5" />
<!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con6.png" alt="" class="img5"> --> <!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con6.png" alt="" class="img5"> -->
<img src="https://webapp-pub.ezijing.com/www/pc/emp-con7-new.png" alt="" class="img9" /> <div class="img-swiper">
<div class="title">部分合作院校</div>
<div v-swiper:mySwiper="swiperOption" ref="mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="https://webapp-pub.ezijing.com/www/pc/emp624-i3.png">
</div>
</div>
</div>
</div>
<div class="img-swiper">
<div class="title">部分合作企业</div>
<div v-swiper:mySwiper2="swiperOption2" ref="mySwiper2">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="https://webapp-pub.ezijing.com/www/pc/emp624-i4.png">
</div>
</div>
</div>
</div>
<!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con7-new.png" alt="" class="img9" /> -->
<!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con8.png" alt="" class="img9"> --> <!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con8.png" alt="" class="img9"> -->
<!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con9.png" alt="" class="img9"> --> <!-- <img src="https://webapp-pub.ezijing.com/www/pc/emp-con9.png" alt="" class="img9"> -->
</div> </div>
...@@ -42,14 +62,38 @@ export default { ...@@ -42,14 +62,38 @@ export default {
components: {}, components: {},
data() { data() {
return { return {
swiperOption: {
speed: 1000,
autoplay: true,
delay: 3000,
observer: true,
observerParent: true,
navigation: {
nextEl: '.next-button',
prevEl: '.prev-button'
},
loop: true
},
swiperOption2: {
speed: 1000,
autoplay: true,
delay: 3000,
observer: true,
observerParent: true,
navigation: {
nextEl: '.next-button',
prevEl: '.prev-button'
},
loop: true
},
list: [ list: [
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx1.jpg', text: '职业思维篇' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp624-i1.png', text: '职业思维篇' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx2.jpg', text: '职业形象篇' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx2.jpg', text: '职业形象篇' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx3.jpg', text: '职业效率篇' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx3.jpg', text: '职业效率篇' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx4.jpg', text: '职业提升篇' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx4.jpg', text: '职业提升篇' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx5.jpg', text: '菁英思维' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx5.jpg', text: '菁英思维' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx6.jpg', text: '菁英技能' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx6.jpg', text: '菁英技能' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx7.jpg', text: '菁英拓展' }, { image: 'https://webapp-pub.ezijing.com/www/pc/emp624-i2.png', text: '菁英拓展' },
{ image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx8.jpg', text: '菁英实战' } { image: 'https://webapp-pub.ezijing.com/www/pc/emp-gx8.jpg', text: '菁英实战' }
], ],
list2: [ list2: [
...@@ -70,6 +114,12 @@ export default { ...@@ -70,6 +114,12 @@ export default {
return url => { return url => {
return `background: url(${url});background-size: 100% 100%` return `background: url(${url});background-size: 100% 100%`
} }
},
swiper() {
return this.$refs.mySwiper.swiper;
},
swiper2() {
return this.$refs.mySwiper.swiper;
} }
} }
} }
...@@ -122,6 +172,15 @@ export default { ...@@ -122,6 +172,15 @@ export default {
.img9 { .img9 {
margin-top: 35px; margin-top: 35px;
} }
.img-swiper{
.title{
padding: 47px 0 30px;
font-size: 22px;
font-weight: bold;
line-height: 100%;
color: #424242;
}
}
ul { ul {
padding: 23px 0 39px 0; padding: 23px 0 39px 0;
display: flex; display: flex;
......
<template>
<div class="solutin-box">
<div class="title">在线教育解决方案</div>
<img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/www/pc/pages-solution.png">
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.solutin-box{
width: 1200px;
margin: 0 auto;
.title{
font-size: 28px;
line-height: 100%;
padding: 48px 0 28px;
color: #AA1941;
}
img{
width: 100%;
display: block;
}
}
</style>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论