| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <template>
- <view>
- <!-- #ifdef MP || APP-PLUS -->
- <view style="visibility: hidden;" :style="{ height: navHeight + 'px' }" v-if="isFixed"></view>
- <!-- #endif -->
- <view class="navTabBox tabNav" :class="{isFixed:isFixed}" :style="'background: '+ bgColor[0].item +';margin-top:'+mbConfig+'rpx;color:'+txtColor+';top:'+isTop">
- <view class="longTab" :style='"width:"+mainWidth+"px"'>
- <scroll-view scroll-x="true" style="white-space: nowrap; display: flex;" scroll-with-animation :scroll-left="tabLeft" show-scrollbar="true">
- <view 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="goDetail(index,item)">{{item.info[0].value}}</view>
- <view class="underlineBox" :style='"transform:translateX("+isLeft+"px);width:"+isWidth+"px"'>
- <view class="underline bg-color-red"></view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {merPath} from "@/utils/index"
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- let app = getApp();
- export default {
- name: 'customMenu',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- isFixed: {
- type: Boolean,
- default: false
- },
- merId:{}
- },
- data() {
- return {
- tabClick: 0, //导航栏被点击
- isLeft: 0, //导航栏下划线位置
- isWidth: 0, //每个导航栏占位
- mainWidth: 0,
- tabLeft:0,
- swiperIndex:0,
- childIndex:0,
- childID:0,
- tabTitle:this.dataConfig.menuConfig.list,
- bgColor:this.dataConfig.bgColor.color,
- mbConfig:this.dataConfig.mbConfig.val*2,
- txtColor:this.dataConfig.txtColor.color[0].item,
- fixedTop: 0,
- isTop: 0,
- navHeight: 0,
- };
- },
- created() {
- var that = this
- // 获取设备宽度
- uni.getSystemInfo({
- success(e) {
- that.mainWidth = e.windowWidth
- that.isWidth = (e.windowWidth-65) / 4
- }
- })
- setTimeout((e) => {
- const query = uni.createSelectorQuery().in(this);
- query.select('.navTabBox').boundingClientRect(data => {
- 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
- },
- methods: {
- goDetail(index,url){
- this.childIndex = 0;
- if(this.tabTitle.length>3){
- var tempIndex = index - 2;
- tempIndex = tempIndex<=0 ? 0 : tempIndex;
- this.tabLeft = (index-2) * this.isWidth //设置下划线位置
- }
- this.tabClick = index //设置导航点击了哪一个
- this.isLeft = index * this.isWidth //设置下划线位置
- let urls = url.info[1].value
- urls = merPath(urls, this.merId)
- console.log(urls,'urls');
- if(urls.indexOf("http") != -1){
- // #ifdef H5
- location.href = urls
- // #endif
- }else{
- if(['/pages/goods_cate/goods_cate','/pages/order_addcart/order_addcart','/pages/user/index'].indexOf(urls) == -1){
- uni.navigateTo({
- url:urls
- })
- }else{
- uni.switchTab({
- url:urls
- })
- }
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .tabNav {
- padding-top: 24rpx;
- }
- .navTabBox {
- width: 100%;
- color: rgba(255, 255, 255, 1);
- position: relative;
- padding-bottom: 20rpx;
- &.isFixed {
- z-index: 45;
- position: fixed;
- left: 0;
- width: 100%;
- /* #ifdef H5 */
- padding-top: 20rpx;
- top: 0;
- /* #endif */
- }
- .click {
- color: white;
- }
- .longTab {
- padding-bottom: 20rpx;
- .longItem{
- height: 50upx;
- display: inline-block;
- line-height: 50upx;
- text-align: center;
- font-size: 28rpx;
- color: #333333;
- max-width: 160rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- &.click{
- font-weight: bold;
- font-size: 30rpx;
- color: #E93323;
- }
- }
- .underlineBox {
- height: 3px;
- width: 20%;
- display: flex;
- align-content: center;
- justify-content: center;
- transition: .5s;
- .underline {
- width: 33rpx;
- height: 4rpx;
- }
- }
- }
- }
- .child-box{
- width: 100%;
- position: relative;
- // height: 152rpx;
- background-color: #fff;
- /* #ifdef H5 */
- box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.02);
- /* #endif */
- /* #ifdef MP */
- box-shadow: 0 2rpx 3rpx 1rpx #f9f9f9;
- /* #endif */
- .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>
|