43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<view class="box">
|
|
<!-- 购物车店铺 -->
|
|
<view class="box3">
|
|
<block a:for="{{productList}}" a:key="id">
|
|
<view class="box1">
|
|
|
|
<view class="box4">
|
|
<!-- 给每个复选框绑定 data-index -->
|
|
<ant-checkbox
|
|
color="red"
|
|
checked="{{selectedItems[index]}}"
|
|
data-index="{{index}}"
|
|
onChange="handleCheckedChange">
|
|
</ant-checkbox>
|
|
</view>
|
|
<image class="image" mode="scaleToFill" src="{{item.commoditiesImage}}" />
|
|
<!-- <text class="text3" onTap="yichu">移除</text> -->
|
|
<view class="box5">
|
|
|
|
<view>
|
|
<text class="text" style="font-size:20px">{{item.commoditiesName}}</text>
|
|
</view>
|
|
<view>
|
|
<text class="text" style="font-size:15px">¥{{item.commoditiesPrice}}</text>
|
|
</view>
|
|
<view class="container">
|
|
<stepper defaultValue="{{0}}" min="{{1}}" max="999" step="{{1}}" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
|
|
<!-- 底部结算栏 -->
|
|
<view class="boxall">
|
|
<ant-checkbox checked="{{checked}}" color="red" onChange="toggleChange">全选</ant-checkbox>
|
|
<text class="text2">合计:¥{{totalPrice}}</text>
|
|
<view class="boxd">
|
|
<text class="text1">结算</text>
|
|
</view>
|
|
</view>
|
|
</view>
|