| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <template>
- <header class="v-header clearfix">
- <div id="index-header" :class="headFixed == true ? 'fixedTop' : ''">
- <div class="index-header-box">
- <div class="i-h-nav">
- <div class="h-nav-logo">
- <nuxt-link to="/">
- <img src="~/assets/images/index/logo.png" alt="" srcset="">
- </nuxt-link>
- </div>
- <ul class="h-nav-list">
- <li>
- <nuxt-link to="/">首页</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/product">产品与服务</nuxt-link>
- <ul class="h-nav-list-child">
- <li>
- <nuxt-link target="_blank" to="/product/list">教具玩具</nuxt-link>
- </li>
- <li>
- <nuxt-link target="_blank" to="/product/course">多端课堂</nuxt-link>
- </li>
- <!-- <li><a href="/brand#brand-story">教具玩具</a></li> -->
- <!-- <li><a href="/brand#brand-background">多端课堂</a></li> -->
- </ul>
- </li>
- <li>
- <nuxt-link to="/leader">新闻资讯</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/experice">网校中心</nuxt-link>
- <ul class="h-nav-list-child">
- <li>
- <nuxt-link to="/experice/bt">包头</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/experice/cd">成都</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/experice/nj">南京</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/experice/dg">东莞</nuxt-link>
- </li>
- </ul>
- </li>
- <li>
- <nuxt-link target="_blank" to="/prod">全国校区</nuxt-link>
- <ul class="h-nav-list-child h-nav-list-childProd">
- <li>
- <nuxt-link target="_blank" to="/prod/newPro">最新产品</nuxt-link>
- <nuxt-link target="_blank" to="/prod/newPro">全部</nuxt-link>
- </li>
- <template v-for="(item,index) in headProdNav">
- <li
- :key="index"
- v-if="item.proCategoryId != 96 && item.proCategoryId != 97"
- >
- <nuxt-link
- target="_blank"
- :to="{name: 'prod-typeId',params: {typeId: item.proCategoryId}}"
- >{{item.proCategoryName}}</nuxt-link>
- <nuxt-link
- target="_blank"
- :to="{name: 'prod-typeId',params: {typeId: item.proCategoryId}}"
- >全部</nuxt-link>
- <ul class="nav-childProd">
- <li v-for="(list,index) in headProdNav[index].children" :key="index">
- <nuxt-link
- target="_blank"
- :to="{name: 'prod-typeId',params: {typeId: item.proCategoryId},query: {classId: list.proCategoryId}}"
- >{{list.proCategoryName}}</nuxt-link>
- </li>
- </ul>
- </li>
- </template>
- </ul>
- </li>
- <li>
- <nuxt-link target="_blank" to="/news">加盟合作</nuxt-link>
- <ul class="h-nav-list-child h-nav-list-childNews">
- <li v-for="item in headNewsNav" :key="item.articleCategoryId">
- <nuxt-link
- target="_blank"
- :to="{name: 'news-category',params: {category: item.articleCategoryId}}"
- >{{item.articleCategoryName}}</nuxt-link>
- </li>
- </ul>
- </li>
- <li>
- <nuxt-link to="/join">招商加盟</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/service/contact">关于我们</nuxt-link>
- <ul class="h-nav-list-child">
- <li>
- <nuxt-link to="/service/presales">品牌故事</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/service/aftersales">专家团队</nuxt-link>
- </li>
- <li>
- <nuxt-link to="/service/contact">联系我们</nuxt-link>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </header>
- </template>
- <script>
- import { mapState } from "vuex";
- export default {
- name: "VHeader",
- data() {
- return {
- headFixed: true,
- maxClientWidth: 980,
- isShowCode: false,
- };
- },
- computed: {
- ...mapState(["headProdNav", "headNewsNav", "headJobNav"]),
- },
- mounted() {
- //监听滚动条
- window.addEventListener("scroll", this.handleScroll);
- },
- methods: {
- handleScroll() {
- // var scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
- // var offsetTop = document.querySelector('.h-nav-list').offsetTop;
- // if (scrollTop > offsetTop) {
- // this.headFixed = true;
- // } else {
- // this.headFixed = false;
- // }
- },
- showCode() {
- this.isShowCode = !this.isShowCode;
- },
- },
- destroyed() {
- window.removeEventListener("scroll", this.handleScroll);
- },
- };
- </script>
- <style scoped>
- #index-header {
- width: 100%;
- /* height: 158px; */
- background: #fff;
- z-index: 666;
- }
- .fixedTop {
- position: fixed;
- /* top: -100px; */
- left: 0;
- }
- .index-header-box {
- position: relative;
- width: 100%;
- height: 100%;
- background: #fff;
- border-bottom: 1px solid #d5d5d8;
- box-sizing: border-box;
- }
- .i-h-top {
- position: relative;
- width: 100%;
- min-width: 1200px;
- height: 81px;
- margin-top: 15px;
- }
- .h-t-contact {
- float: left;
- height: 45px;
- margin-left: 66px;
- color: #a2a1a2;
- font-size: 12px;
- text-align: center;
- line-height: 45px;
- }
- .h-t-contact h1 {
- display: inline-block;
- font-weight: normal;
- }
- .h-t-logo {
- position: absolute;
- left: 50%;
- top: 0;
- width: 80px;
- height: 81px;
- margin-left: -40px;
- }
- .h-t-mobile {
- position: relative;
- float: right;
- height: 45px;
- margin-right: 66px;
- font-size: 12px;
- text-align: center;
- line-height: 45px;
- }
- .h-t-contact > span {
- padding: 0 10px;
- }
- .h-t-contact > a {
- padding: 0 10px;
- color: #a2a1a2;
- }
- .t-m-mobile-code {
- position: absolute;
- top: 45px;
- right: 0;
- width: 100px;
- height: 100px;
- }
- .t-m-mobile-code img {
- width: 100%;
- }
- .h-t-mobile > div {
- float: left;
- padding: 0 12px;
- }
- .h-t-mobile > div > a {
- color: #a2a1a2;
- }
- .i-h-nav {
- display: flex;
- width: 1200px;
- height: 60px;
- line-height: 60px;
- margin: 0 auto;
- /* padding-top: 15px; */
- font-size: 14px;
- /* line-height: 54px; */
- text-align: center;
- }
- .h-nav-logo {
- font-size: 0;
- }
- .h-nav-logo img {
- height: 60px;
- }
- ul.h-nav-list {
- display: block;
- width: 100%;
- height: 100%;
- }
- .h-nav-list > li {
- position: relative;
- display: inline-block;
- padding: 0 23px;
- box-sizing: border-box;
- }
- .h-nav-list > li > a {
- display: block;
- width: 100%;
- height: 60px;
- /* padding-bottom: 6px; */
- color: #6d6d6d;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- .h-nav-list > li:hover > a,
- .h-nav-list .nuxt-link-exact-active,
- .h-nav-list .nuxt-link-active {
- color: #22202b;
- border-bottom: 2px solid #2f2d37;
- }
- .h-nav-list > li:first-child .nuxt-link-active {
- border-bottom: 2px solid transparent;
- }
- .h-nav-list > li:first-child .nuxt-link-active.nuxt-link-exact-active {
- border-bottom: 2px solid #2f2d37;
- }
- .h-nav-list-child li a.nuxt-link-exact-active {
- border: none;
- }
- .h-nav-list > li .h-nav-list-child {
- visibility: hidden;
- position: absolute;
- top: 60px;
- left: 50%;
- overflow: hidden;
- width: 100px;
- height: 0;
- margin-left: -50px;
- /* background: #f2f3f4; */
- background: #ffffff;
- box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
- border: 1px solid #EEE;
- opacity: 0;
- filter: alpha(opacity=0);
- z-index: 999;
- transition: all .5s ease;
- }
- .h-nav-list > li:hover .h-nav-list-child {
- visibility: visible;
- height: auto;
- -webkit-transition: all .5s ease;
- -o-transition: all .5s ease;
- transition: all .5s ease;
- opacity: 100;
- filter: alpha(opacity=1);
- }
- ul.h-nav-list-child > li {
- width: 100%;
- height: 30px;
- font-size: 14px;
- text-align: center;
- line-height: 30px;
- }
- ul.h-nav-list-child li a {
- display: block;
- overflow: hidden;
- width: 100%;
- height: 100%;
- color: #6d6d6d;
- border: none;
- }
- ul.h-nav-list-child li a:hover {
- color: #22202b;
- }
- ul.h-nav-list-child.h-nav-list-childProd {
- left: 0;
- margin-left: 0;
- width: 600px;
- padding: 15px;
- }
- ul.h-nav-list-child.h-nav-list-childProd > li {
- overflow: hidden;
- height: auto;
- line-height: 40px;
- }
- ul.h-nav-list-child.h-nav-list-childProd > li > a:first-child {
- float: left;
- width: 100px;
- }
- ul.h-nav-list-child.h-nav-list-childProd > li > a:nth-child(2) {
- float: left;
- width: 50px;
- font-weight: bold;
- }
- ul.nav-childProd {
- float: left;
- width: 450px;
- min-height: 30px;
- border-bottom: 1px dotted #ccc;
- }
- ul.h-nav-list-child.h-nav-list-childProd > li:last-child .nav-childProd {
- border-bottom: none;
- }
- ul.nav-childProd > li {
- float: left;
- width: auto;
- }
- ul.nav-childProd > li > a {
- padding: 0 10px;
- }
- ul.h-nav-list-child.h-nav-list-childProd .nuxt-link-active {
- color: #6d6d6d;
- border-bottom: transparent;
- }
- ul.h-nav-list-child.h-nav-list-childProd li a:hover {
- color: #22202b;
- }
- .h-nav-list-childNews li a.nuxt-link-active {
- color: #6d6d6d;
- border: none;
- }
- </style>
|