|
@@ -3,55 +3,48 @@
|
|
|
<nuxt-link to="/" :class="{active : curActive === 'shouye'}">首页</nuxt-link>
|
|
|
|
|
|
<el-popover
|
|
|
- placement="bottom-start"
|
|
|
- width="200"
|
|
|
- trigger="hover"
|
|
|
+ placement="bottom"
|
|
|
+ trigger="click"
|
|
|
+ popper-class="head-popper-box cp-popper-box"
|
|
|
>
|
|
|
- <div>
|
|
|
- <nuxt-link :to="item.url" v-for="(item,index) in chanpinfuwu" :key="index">
|
|
|
- <div class="popover-left">
|
|
|
- <img :src="item.img">
|
|
|
- </div>
|
|
|
- <div class="popover-left">
|
|
|
- <span class="popover-left-title">{{ item.title }}</span>
|
|
|
- <span class="popover-left-des">{{ item.des }}</span>
|
|
|
- </div>
|
|
|
+ <nuxt-link :to="item.url" v-for="(item,index) in chanpinfuwu" :key="index" class="head-popper-item">
|
|
|
+ <i></i>
|
|
|
+ <p>
|
|
|
+ <span class="head-popper-title">{{ item.title }}</span>
|
|
|
+ <span class="head-popper-des">{{ item.des }}</span>
|
|
|
+ </p>
|
|
|
</nuxt-link>
|
|
|
- </div>
|
|
|
<span class="nav-btn" slot="reference" :class="{active: curActive === 'chanpinyufuwu'}">产品与服务<i class="el-icon-arrow-down el-icon--right"></i></span>
|
|
|
</el-popover>
|
|
|
|
|
|
<el-popover
|
|
|
- placement="bottom-start"
|
|
|
- width="200"
|
|
|
- trigger="hover"
|
|
|
+ placement="bottom"
|
|
|
+ trigger="click"
|
|
|
+ popper-class="head-popper-box jj-popper-box"
|
|
|
>
|
|
|
- <div class="menu-container">
|
|
|
- <div class="menu-item">
|
|
|
+ <div class="head-popper-content">
|
|
|
+ <div>
|
|
|
<h3>场景解决方案</h3>
|
|
|
- <div class="menu-item-container">
|
|
|
- <nuxt-link :to="item.url" v-for="(item,index) in changjing" :key="index">
|
|
|
- <div class="popover-left">
|
|
|
- <img src="#">
|
|
|
- </div>
|
|
|
- <div class="popover-left">
|
|
|
- <span class="popover-left-title">{{ item.title }}</span>
|
|
|
- <span class="popover-left-des">{{ item.des }}</span>
|
|
|
- </div>
|
|
|
+ <div class="head-popper-cj-row">
|
|
|
+ <nuxt-link :to="item.url" v-for="(item,index) in changjing" :key="index" class="head-popper-item">
|
|
|
+ <i></i>
|
|
|
+ <p>
|
|
|
+ <span class="head-popper-title">{{ item.title }}</span>
|
|
|
+ <span class="head-popper-des">{{ item.des }}</span>
|
|
|
+ </p>
|
|
|
</nuxt-link>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="menu-item">
|
|
|
+ <em></em>
|
|
|
+ <div>
|
|
|
<h3>行业解决方案</h3>
|
|
|
- <div class="menu-item-container">
|
|
|
- <nuxt-link :to="item.url" v-for="(item,index) in hangye" :key="index">
|
|
|
- <div class="popover-left">
|
|
|
- <img :src="item.img">
|
|
|
- </div>
|
|
|
- <div class="popover-left">
|
|
|
- <span class="popover-left-title">{{ item.title }}</span>
|
|
|
- <span class="popover-left-des">{{ item.des }}</span>
|
|
|
- </div>
|
|
|
+ <div class="head-popper-hy-row">
|
|
|
+ <nuxt-link :to="item.url" v-for="(item,index) in hangye" :key="index" class="head-popper-item">
|
|
|
+ <i></i>
|
|
|
+ <p>
|
|
|
+ <span class="head-popper-title">{{ item.title }}</span>
|
|
|
+ <span class="head-popper-des">{{ item.des }}</span>
|
|
|
+ </p>
|
|
|
</nuxt-link>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -71,25 +64,21 @@ export default {
|
|
|
return {
|
|
|
chanpinfuwu: [
|
|
|
{
|
|
|
- img: '#',
|
|
|
title: '考试系统',
|
|
|
des: '一款简单、好用的考试系统',
|
|
|
url: '/product/exam'
|
|
|
},
|
|
|
{
|
|
|
- img: '#',
|
|
|
title: '培训系统',
|
|
|
des: '企业一站式在线培训系统',
|
|
|
url: '/product/peixun'
|
|
|
},
|
|
|
{
|
|
|
- img: '#',
|
|
|
title: '课程定制',
|
|
|
des: '为企业量身定做专属课程',
|
|
|
url: '/product/courseCustom'
|
|
|
},
|
|
|
{
|
|
|
- img: '#',
|
|
|
title: '课程资源',
|
|
|
des: '企业优质通用课程资源',
|
|
|
url: '/product/courseResource'
|
|
@@ -192,12 +181,3 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang="scss" scoped>
|
|
|
-.active {
|
|
|
- color: #f0bd16;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-btn {
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-</style>
|