2024-12-01 11:56:54 +00:00
|
|
|
<view class="box">
|
|
|
|
<!-- 购物车店铺 -->
|
|
|
|
<view class="box3">
|
2024-12-17 11:46:10 +00:00
|
|
|
<checkbox-group onChange="checkboxChange">
|
2024-12-01 11:56:54 +00:00
|
|
|
<block a:for="{{productList}}" a:key="id">
|
|
|
|
<view class="box1">
|
2024-12-03 11:59:36 +00:00
|
|
|
|
2024-11-10 07:01:22 +00:00
|
|
|
<view class="box4">
|
2024-12-01 11:56:54 +00:00
|
|
|
<!-- 给每个复选框绑定 data-index -->
|
2024-12-17 11:46:10 +00:00
|
|
|
<checkbox color="red" checked="{{item.checked}}" value="{{item.cartId}}" />
|
2024-12-01 11:56:54 +00:00
|
|
|
</view>
|
|
|
|
<image class="image" mode="scaleToFill" src="{{item.commoditiesImage}}" />
|
2024-11-10 07:01:22 +00:00
|
|
|
<view class="box5">
|
2024-12-01 11:56:54 +00:00
|
|
|
<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">
|
2024-12-17 11:46:10 +00:00
|
|
|
<view class="beijing" data-index="{{index}}" style="margin-right: 10rpx;" onTap="decreaseQuantity" >
|
|
|
|
<text>-</text>
|
|
|
|
</view>
|
|
|
|
<view class="number">
|
|
|
|
<text >{{item.quantity}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="beijing" style="margin-left: 10rpx;"onTap="increaseQuantity" data-index="{{index}}" >
|
|
|
|
<text >+</text>
|
|
|
|
</view>
|
2024-12-01 11:56:54 +00:00
|
|
|
</view>
|
2024-11-10 07:01:22 +00:00
|
|
|
</view>
|
2024-12-10 10:35:22 +00:00
|
|
|
<text class="text3" onTap="yichu" data-id="{{item.cartId}}">移除购物车</text>
|
2024-11-10 07:01:22 +00:00
|
|
|
</view>
|
2024-12-01 11:56:54 +00:00
|
|
|
</block>
|
2024-12-17 11:46:10 +00:00
|
|
|
</checkbox-group>
|
2024-12-01 11:56:54 +00:00
|
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 底部结算栏 -->
|
|
|
|
<view class="boxall">
|
2024-12-17 11:46:10 +00:00
|
|
|
<checkbox color="red" checked="{{select_all}}" onChange="selectall"/>全选
|
2024-12-01 11:56:54 +00:00
|
|
|
<text class="text2">合计:¥{{totalPrice}}</text>
|
2024-12-17 11:46:10 +00:00
|
|
|
<view class="boxd" onTap="jiesuan">
|
2024-12-01 11:56:54 +00:00
|
|
|
<text class="text1">结算</text>
|
2024-11-10 07:01:22 +00:00
|
|
|
</view>
|
|
|
|
</view>
|
2024-12-01 11:56:54 +00:00
|
|
|
</view>
|