65 lines
3.1 KiB
Plaintext
65 lines
3.1 KiB
Plaintext
<!-- 头部 -->
|
|
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}"></nav-bar>
|
|
<!-- mall/shopcart/shopcart.wxml -->
|
|
<view class="shopcart">
|
|
<view class="shop_list">
|
|
<view wx:for="{{ cartList }}" wx:key="{{index}}" data-index="{{index}}" catchtap="checklist">
|
|
<wux-cell-group>
|
|
<wux-swipe-action autoClose right="{{ right }}" data-item="{{ item }}" bind:click="onClick">
|
|
<view class="shop_list_row" wx:if="{{ item.num != 0 }}">
|
|
<view class="shop_select">
|
|
<image src="{{item.isShow ? '/static/img/icon/wxPay2.png' : '/static/img/icon/wxPay1.png' }}" />
|
|
</view>
|
|
<view class="shop_info">
|
|
<view class="shop_img">
|
|
<image src="{{item.image}}" />
|
|
</view>
|
|
<view class="shop_info_p">
|
|
<view class="shop_info_title">
|
|
<view class="shop_title">{{item.name}}</view>
|
|
<view class="shop_j">
|
|
<span class="mr10" wx:if="{{ !!item.attr && item.attr.length >=0 }}" wx:for="{{item.attr}}" wx:key wx:for-item="list" >{{list}}</span>
|
|
</view>
|
|
</view>
|
|
<view class="shop_mon_num">
|
|
<view class="mon">¥{{item.allMon}}</view>
|
|
<view class="num">
|
|
<i-input-number i-class="my-i-number" data-item="{{ item }}" value="{{ item.num }}" min="0" max="100" bindchange="handleChange1" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</wux-swipe-action>
|
|
</wux-cell-group>
|
|
</view>
|
|
</view>
|
|
<!-- 购物车为空时 -->
|
|
<view wx:if="{{ cartList.length <= 0 }}" class="cart_kong">
|
|
<view>
|
|
<image src="/static/img/icon/cart-kong.png" />
|
|
<view class="cart_kong_p">购物车空空如也~</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="cart_sub">
|
|
<!-- <view class="cart_tips">
|
|
<view class="cart_tips_p">不满{{postage.satisfy_money}}元包邮,配送费¥{{postage.postage_money}}</view>
|
|
<view class="add_shop">继续凑单 ></view>
|
|
</view> -->
|
|
<view class="cart_but">
|
|
<view class="cart_in">
|
|
<view class="cart_all" data-index="-1" bind:tap="checklist">
|
|
<image src="{{ allShow ? '/static/img/icon/wxPay2.png' : '/static/img/icon/wxPay1.png' }}" />
|
|
全选
|
|
</view>
|
|
<view class="all_num">
|
|
<span>(不含运费)</span>
|
|
合计:¥{{total}}
|
|
</view>
|
|
</view>
|
|
<view class="purchase flex-con3" bind:tap="placeOrder">立即购买</view>
|
|
</view>
|
|
</view>
|
|
<!-- toasta提示 -->
|
|
<i-toast id="toast" /> |