安卓手机下真机渲染卡顿,开发者工具和ios系统下都是正常显示的。
<block wx:for="{{cartBagList}}" wx:key="goodID">
<scroll-view hidden="{{!cartCount['cart'+item.goodsID]}}">
<t-cell
title="{{item.title}}"
description="¥{{item.showPrice}}"
align="top"
image="{{item.image}}"
bordered="{{true}}"
t-class-description ="amount"
style="flex-shrink:0;--td-cell-border-color:#d1c8d3;--td-cell-border-width:6rpx"
>
<view class="stepper-example" slot="description">
<t-stepper defaultValue="0" data-goodsid="{{item.goodsID}}" value="{{!cartCount['cart'+item.goodsID]?0:cartCount['cart'+item.goodsID]}}" bind:change="handleCountChange" theme="filled" min="1" max="99" disable-input/>
<t-button theme="primary" size="small" variant="text" bind:tap="onDeleteCartGoods" style="margin:0" data-goodsid="{{item.goodsID}}">删除</t-button>
</view>
</t-cell>
</view>
</block>
代码片段无法使用,请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。