You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
398 B
8 lines
398 B
2 weeks ago
|
<view class="cart">
|
||
|
<view class="list" wx:for="{{ cartData }}" wx:key="index">
|
||
|
<van-swipe-cell right-width="{{ 65 }}">
|
||
|
<van-card price="{{ item.price }}" title="{{ item.title }}" thumb="{{ item.image }}" />
|
||
|
<view data-id="{{ item.id }}" bindtap="delCartHandle" slot="right" class="van-swipe-cell-right">删除</view>
|
||
|
</van-swipe-cell>
|
||
|
</view>
|
||
|
</view>
|