uni-app点点

选项卡的实现

<view v-for=”(item,index) in list” :key=”index” class=”class1”
:class=”{active:activeIndex===index}” @click=”clickTab(item,index)”>{{item.name}}</view>
 
props:{
    list:{
        type:Array,
        default(){
            return []
        }
    }
}
data(){
    return{
        //list:[“选项一”,“选项二”,“选项三”,“选项四”,],
        activeIndex:0
   }
},
methods:{
    clickTab(item,index){
        this.activeIndex=index
            this.$emit(‘tab’,{
                data:item,
                index:index
            })
        }
    }
}
父组件<tab :list=”tablist” @tab=”tab”></tab>
tab({data,index}){
 console.log(data,index)
}

不fixed 实现滚动scroll-view

<view class="home">
    <view>不fixed也能固定住</view>
    <view class="scroll">
        <scroll-view scroll-y>
            <view><view v-for=”item in 100”>{{item}}</view></view>
        </scroll-view>
    </view>
</view>

page{
    height:100%;
    display:flex;
}
.home{
    display:flex;
    flex-direction:column;
    flex:1;
}
.scroll{
    flex:1;
    overflow:hidden;
    box-sizing:border-box;
}
scroll-view{
    height:100%;
    display:flex;
    flex-direction:column;
}

文字溢出隐藏

text{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值