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.
15 lines
532 B
15 lines
532 B
<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 }}"
|
|
bindtap="goDetail"
|
|
data-id="{{ item.id }}"
|
|
/>
|
|
<view data-id="{{ item.id }}" bindtap="delCartHandle" slot="right" class="van-swipe-cell-right">删除</view>
|
|
|
|
</van-swipe-cell>
|
|
</view>
|
|
</view> |