请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

老师,tab不显示内容,帮忙排查一下可以吗

图片描述

<template>
  <div class="tab">
    <cube-tab-bar
      :useTransition=false
      :showSlider=true
      v-model="selectedLabel"
      :data="tabs"
      ref="tabBar"
      class="border-bottom-1px"
    >
    </cube-tab-bar>
    <div class="slide-wrapper">
      <cube-slide
        :loop=false
        :auto-play=false
        :show-dots=false
        :initial-index="index"
        ref="slide"
      >
        <cube-slide-item>
            11111111
        </cube-slide-item>
        <cube-slide-item>
            22222222
        </cube-slide-item>
        <cube-slide-item>
            22222222222
        </cube-slide-item>
      </cube-slide>
    </div>
  </div>
</template>

<script>
  export default {
    name: 'tab',
    props: {
      initialIndex: {
        type: Number,
        default: 0
      }
    },
    data() {
      return {
        index: this.initialIndex,
        tabs: [{
          label: '全部'
          }, {
            label: '成功'
          }, {
            label: '查询中'
          }
        ],
        slideOptions: {
            listenScroll: true,
            probeType: 3,
            directionLockThreshold: 0
        }
      }
    },
    computed: {
      selectedLabel: {
        get() {
          return this.tabs[this.index].label
        },
        set(newVal) {
          this.index = this.tabs.findIndex((value) => {
            return value.label === newVal
          })
        }
      }
    },
    methods: {
      onScroll(pos) {
        const tabBarWidth = this.$refs.tabBar.$el.clientWidth
        const slideWidth = this.$refs.slide.slide.scrollerWidth
        const transform = -pos.x / slideWidth * tabBarWidth
        this.$refs.tabBar.setSliderTransform(transform)
      },
      onChange(current) {
        this.index = current
        console.log(this.index)
        const instance = this.$refs.component[current]
        if (instance && instance.fetch) {
          instance.fetch()
        }
      }
    }
  }
</script>

<style lang="stylus" scoped>
  @import "~common/stylus/variable"

  .tab
    display: flex
    flex-direction: column
    height: 100%
    >>> .cube-tab
      padding: 10px 0
    .slide-wrapper
      flex: 1
      overflow: hidden
</style>

正在回答

4回答

https://img1.sycdn.imooc.com/szimg/5e6849a809c9340f13260394.jpg
这里改成 v-if 就可以了

0 回复 有任何疑惑可以回复我~
ustbhuangyi 2020-03-10 18:10:43

//img1.sycdn.imooc.com//szimg/5e67678e093db2b614281770.jpg
你上传的代码以及分支对吗,我怎么打开是这样的?

0 回复 有任何疑惑可以回复我~
  • 提问者 慕粉1230329569 #1
    对的 点击查询记录
    回复 有任何疑惑可以回复我~ 2020-03-10 18:19:03
ustbhuangyi 2020-03-10 15:26:41

你把代码传到 GitHub 上,我抽空帮你看下

0 回复 有任何疑惑可以回复我~
  • 提问者 慕粉1230329569 #1
    老师,我上传到这个地址了https://github.com/tank-w/cube-uics.git
    回复 有任何疑惑可以回复我~ 2020-03-10 17:24:53
ustbhuangyi 2020-03-10 14:29:06

看一下对应的 DOM 有没有渲染出来。

0 回复 有任何疑惑可以回复我~
  • 提问者 慕粉1230329569 #1
    DOM没有渲染出来,老师,我贴了下代码,麻烦您看看哪有问题
    回复 有任何疑惑可以回复我~ 2020-03-10 14:37:58
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信