123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <template>
- <view>
- <!-- #ifdef MP || APP-PLUS -->
- <view style="visibility: hidden;" :style="{ height: navHeight + 'px' }" v-if="isFixed"></view>
- <!-- #endif -->
- <view class="navTabBox"
- :style="'background: linear-gradient(90deg, '+ bgColor[0].item +' 50%, '+ bgColor[1].item +' 100%);margin-top:'+mbConfig*2+'rpx;color:'+txtColor+';top:'+isTop"
- :class="{isFixed:isFixed}">
- <view class="longTab">
- <scroll-view scroll-x="true" style="white-space: nowrap; display: flex;" scroll-with-animation
- :scroll-left="tabLeft" show-scrollbar="true">
- <view :url="'/pages/goods/goods_list/index?cid='+item.id+'&title='+item.cate_name" class="longItem"
- :style='"width:"+isWidth+"px"' :data-index="index" :class="index===tabClick?'click':''"
- v-for="(item,index) in tabTitle" :key="index" :id="'id'+index" @click="longClick(item,index)">
- {{$t(item.cate_name)}}
- </view>
- <!-- <view class="underlineBox" :style='"transform:translateX("+isLeft+"px);width:"+isWidth+"px"'>
- <view class="underline"></view>
- </view> -->
- </scroll-view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getCategoryList
- } from '@/api/store.js';
- export default {
- name: 'tabNav',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- isFixed: {
- type: Boolean | String | Number,
- default: false
- }
- },
- data() {
- return {
- tabTitle: [],
- tabLeft: 0,
- isWidth: 0, //每个导航栏占位
- tabClick: 0, //导航栏被点击
- isLeft: 0, //导航栏下划线位置
- bgColor: this.dataConfig.bgColor.color,
- mbConfig: this.dataConfig.mbConfig.val,
- txtColor: this.dataConfig.txtColor.color[0].item,
- fixedTop: 0,
- isTop: 0,
- navHeight: 0
- };
- },
- created() {
- let that = this;
- that.getAllCategory();
- // 获取设备宽度
- uni.getSystemInfo({
- success(e) {
- that.isWidth = e.windowWidth / 5
- }
- })
- },
- methods: {
- // 导航栏点击
- longClick(item, index) {
- if (this.tabTitle.length > 5) {
- this.tabLeft = (index - 2) * this.isWidth //设置下划线位置
- }
- this.tabClick = index //设置导航点击了哪一个
- this.isLeft = index * this.isWidth //设置下划线位置
- this.$emit('bindSortId', item.id)
- },
- // 获取导航
- getAllCategory: function() {
- let that = this;
- getCategoryList().then(res => {
- // res.data.unshift({
- // "id": -99,
- // 'cate_name': '首页'
- // })
- that.tabTitle = res.data;
- setTimeout((e) => {
- const query = uni.createSelectorQuery().in(this);
- query.select('.navTabBox').boundingClientRect(data => {
- that.domOffsetTop = data.top
- that.navHeight = data.height
- that.$emit('bindHeight', data)
- }).exec();
- }, 200)
- // #ifdef MP || APP-PLUS
- this.isTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px'
- // #endif
- // #ifdef H5
- this.isTop = 0
- // #endif
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .navTabBox {
- width: 100%;
- background: linear-gradient(90deg, $bg-star 50%, $bg-end 100%);
- color: rgba(255, 255, 255, 1);
- // padding-bottom: 20rpx;
- &.isFixed {
- z-index: 45;
- position: fixed;
- left: 0;
- width: 100%;
- /* #ifdef H5 */
- padding-top: 20rpx;
- top: 0;
- /* #endif */
- }
- .longTab {
- width: 100%;
- .longItem {
- height: 50rpx;
- display: inline-block;
- line-height: 50rpx;
- text-align: center;
- font-size: 30rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- &.click {
- font-weight: bold;
- }
- }
- .underlineBox {
- height: 3px;
- width: 20%;
- display: flex;
- align-content: center;
- justify-content: center;
- transition: .5s;
- .underline {
- width: 33rpx;
- height: 4rpx;
- background-color: white;
- }
- }
- }
- }
- .child-box {
- width: 100%;
- position: relative;
- background-color: #fff;
- box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.02);
- .wrapper {
- display: flex;
- align-items: center;
- padding: 20rpx 0;
- background: #fff;
- }
- .child-item {
- flex-shrink: 0;
- width: 140rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-left: 10rpx;
- image {
- width: 90rpx;
- height: 90rpx;
- border-radius: 50%;
- }
- .txt {
- font-size: 24rpx;
- color: #282828;
- text-align: center;
- margin-top: 10rpx;
- }
- &.on {
- image {
- border: 1px solid $theme-color-opacity;
- }
- .txt {
- color: $theme-color;
- }
- }
- }
- }
- </style>
|