5***@qq.com
5***@qq.com
  • 发布:2021-06-11 16:15
  • 更新:2022-05-14 19:40
  • 阅读:3929

如何动态的修改uni-list-item的note小文字颜色

分类:uni-app

如果是100%的话我想变成这个颜色,其他情况就是默认的颜色,这个需求该怎么做?

2021-06-11 16:15 负责人:无 分享
已邀请:
bianyuan456

bianyuan456

我记得可以自定义的,自己造组件,放到uni-list-item里面。。
自定义的组件的颜色你可以自己随意的

bianyuan456

bianyuan456

在 ide自带的例子程序hello uniapp中的 实例-扩展组件-list列表中有这个例子

自定义两侧插槽
通过class 改变颜色!!!

    <uni-list-item>  
                    <template v-slot:header>  
                        <view class="slot-box">  
                            <image class="slot-image" src="/static/logo.png" mode="widthFix"></image>  
                        </view>  
                    </template>  
                    <template v-slot:body>  
                        <text class="slot-box slot-text">自定义两侧插槽</text>  
                    </template>  
                    <template v-slot:footer>  
                        <image class="slot-image" src="/static/logo.png" mode="widthFix"></image>  
                    </template>  
                </uni-list-item>

该问题目前已经被锁定, 无法添加新回复