2022-02-16 17:11:48 +08:00

1 line
1.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<block wx:if="{{splitGoods.length}}"><view class="splitOrder"><block wx:if="{{select_all}}"><view class="all"><checkbox-group data-event-opts="{{[['change',[['checkboxAllChange',['$event']]]]]}}" bindchange="__e"><checkbox value="all" checked="{{isAllSelect}}"></checkbox><text class="checkAll">全选</text></checkbox-group></view></block><checkbox-group data-event-opts="{{[['change',[['checkboxChange',['$event']]]]]}}" bindchange="__e"><block wx:for="{{splitGoods}}" wx:for-item="item" wx:for-index="index" wx:key="index"><block><view class="items acea-row row-between-wrapper"><checkbox value="{{item.id}}" checked="{{item.checked}}"></checkbox><view class="picTxt acea-row row-between-wrapper"><view class="pictrue"><image src="{{item.cart_info.productInfo.image}}"></image></view><view class="text"><view class="acea-row row-between-wrapper"><view class="name line1">{{item.cart_info.productInfo.store_name}}</view><view>{{"×"+item.cart_num}}</view></view><view class="infor line1">{{'属性:'+(item.cart_info.productInfo.attrInfo.suk||'默认')}}</view><view class="money">{{"¥"+item.cart_info.truePrice}}</view></view><view class="carnum acea-row row-center-wrapper"><view data-event-opts="{{[['tap',[['subCart',['$0'],[[['splitGoods','',index]]]]]]]}}" class="{{['reduce',item.surplus_num==1?'on':'']}}" catchtap="__e">-</view><view class="num">{{item.surplus_num}}</view><view data-event-opts="{{[['tap',[['addCart',['$0'],[[['splitGoods','',index]]]]]]]}}" class="{{['plus',item.surplus_num==item.numShow?'on':'']}}" catchtap="__e">+</view></view></view></view></block></block></checkbox-group></view></block>