记录 uniapp 小程序实现 顶部tab标签点击切换

<template>
    <view class="top">
        <view @click="changeTabs(index)" v-for="(item, index) in topList" :key="index">{{ item.name }}</view>
        <span class="active" :class="{ activeLeft:!tab, activeRight: tab }"></span>
    </view>
</template>

<script>
    export default{
  data () {
    return {
        tab:false,
        topList:[
            {name:'吐槽墙'},
            {name:'热榜'},
        ],
  }
  },

  methods:{
    // 点击切换标签
    changeTabs(index){
        if(index == 0){
            this.tab = false
        } else {
            this.tab = true
        }
        console.log(this.tab)
    },
  }
}
</script>

<style lang="scss">
    .active{
    transition: all 0.2s ease;
}
.activeLeft{
    position: absolute;
    top: 8vh;
    left: 35.5vw;
    width: 10vw;
    height: 0.5vh;
    background-color: #fff;
    margin: 0;
}
.activeRight{
    position: absolute;
    top: 8vh;
    left: 57.5vw;
    width: 10vw;
    height: 0.5vh;
    background-color: #fff;
    margin: 0;
}
.top{
    width: 100vw;
    height: 10vh;
    background-color: #2d2c28;
    color: #fff;
    display: flex;
    line-height: 10vh;
    font-size: 21px;
    justify-content: center;

    view{
        margin-right: 5vw;
        margin-left: 5vw;
    }
}
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值