| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- <template>
- <div class="detail">
- <!-- <common-banner :img="bannerImg"></common-banner> -->
- <div class="cate-banner"><img :src="bannerImg" alt="" srcset=""></div>
- <!-- 分类 -->
- <div class="tabList w1200">
- <div :class="['tab-item', currentTab == item.id ? 'active' : '' ]" v-for="(item, index) in tabList" :key="index" @click="handleClick(item)">
- {{item.title}}
- <span></span>
- </div>
- </div>
- <!-- 分类图 -->
- <div class="cate-img w1200">
- <img v-if="currenCate" :src="currenCate.cateImg" alt="" srcset="">
- </div>
- <!-- 分类信息 -->
- <div class="cate-main">
- <div class="cate-content w1200">
- <div class="cate-title">{{ currenCate.title }}</div>
- <div class="cate-des">{{ currenCate.desc }}</div>
- <div class="cate-product-list">
- <div class="product-item" v-for="(item, index) in currenCate.productList" :key="index" @click="navPage(item)">
- <div class="img-wrap"><img :src="item.productImg" alt="" srcset=""></div>
- <div class="title">{{ item.title }}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import CommonBanner from '@/components/common/banner';
- import cateData from './data.js';
- export default {
- data() {
- return {
- currentTab: 1,
- currenCate: {},
- bannerImg: require('~/assets/images/products/product_banner.png'),
- cateImg: require('~/assets/images/products/cate_banner_01.png'),
- productImg: require('~/assets/images/goods/product_jc_01.jpg'),
- tabList: [
- {
- id: 1,
- title: '逻辑狗3-7岁',
- },
- {
- id: 2,
- title: '逻辑狗7-12岁',
- },
- {
- id: 3,
- title: '逻辑狗3-12岁',
- },
- {
- id: 4,
- title: '春夏秋冬',
- },
- {
- id: 5,
- title: '思维魔法',
- },
- {
- id: 6,
- title: '克鲁德',
- },
- {
- id: 7,
- title: '蚂蚁沙丘',
- },
- {
- id: 8,
- title: '中华小熊猫'
- },
- {
- id: 9,
- title: '聪明书'
- }
- ]
- }
- },
- asyncData({isDev, route, store, env, params, query, req, res, redirect, error}) {
- const id = query.id;
- const data = cateData.find(item => item.id == id) || cateData[0];
- return {
- currentTab: id,
- currenCate: data,
- }
- },
- components: {
- // CommonBanner
- },
- methods: {
- handleClick(item) {
- const id = item.id;
- this.currentTab = id;
- const data = cateData.find(item => item.id == id) || cateData[0];
- this.currenCate = data;
- console.log(this.cateData);
- },
- navPage(item) {
- window.open(item.linkUrl);
- }
- }
-
- }
- </script>
- <style lang="scss" scoped>
- .cate-banner {
- width: 100%;
- background: #0D5CFA;
- font-size: 0;
- text-align: center;
- img {
- width: 1325px;
- height: 521px;
- }
- }
- .tabList {
- display: flex;
- justify-content: space-between;
- .tab-item {
- position: relative;
- margin: 21px 0 28px;
- font-size: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- &.active {
- font-size: 15px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- line-height: 21px;
- span {
- position: absolute;
- bottom: -6px;
- display: block;
- width: 39px;
- box-shadow: 0px 2px 4px 0px rgba(85, 141, 253, 0.4);
- }
- }
- &:hover {
- span {
- position: absolute;
- bottom: -6px;
- display: block;
- width: 39px;
- box-shadow: 0px 2px 4px 0px rgba(85, 141, 253, 0.4);
- }
- }
- span {
- width: 0px;
- height: 2px;
- background: #236AFA;
- border-radius: 20px;
- left: 0px;
- right: 0px;
- margin: 0 auto;
- transition: all .3s ease-in-out;
- }
- }
- }
- .cate-img {
- font-size: 0;
- img {
- width: 100%;
- }
- }
- .cate-main {
- margin: 80px 0;
- .cate-title {
- font-size: 34px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 48px;
- text-align: center;
- }
- .cate-des {
- margin-top: 14px;
- text-align: center;
- font-size: 16px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #646A7E;
- line-height: 24px;
- }
- .cate-product-list {
- margin-top: 40px;
- display: flex;
- flex-wrap: wrap;
- .product-item {
- margin: 0 22px 20px 0;
- width: 283px;
- height: 380px;
- background: #FFFFFF;
- box-shadow: 0px 2px 17px 0px rgba(208, 231, 253, 0.74);
- border-radius: 20px;
- text-align: center;
- transition: transform .3s ease-in-out;
- &:nth-child(4n) {
- margin-right: 0;
- }
- &:hover {
- transform: translate3d(0,-8px,0);
- }
- .title {
- margin-top: 36px;
- font-size: 16px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- padding: 0 18px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- }
- .img-wrap {
- padding-top: 20px;
- font-size: 0;
- img {
- width: 240px;
- height: 263px;
- object-fit: cover;
- }
- }
- }
- </style>
|