deguodaigou/components/order/commodity/index.wxml
2019-12-23 17:24:26 +08:00

12 lines
571 B
Plaintext

<view class="commodity" bindtap="todetail">
<message wx:for="{{goods}}" title="{{item.goods_name}}" spec="{{item.spec_key_name}}" price="{{item.goods_price}}" num="{{item.goods_num}}" image="{{item.image}}"></message>
<view class="aggregate">
共计{{num}}件商品 合计:
<text>¥{{cprice}}</text>
(含运费¥{{freight}})
</view>
<view class="operation">
<view class="button" catch:tap="cancel">取消订单</view>
<view class="button hlight" catch:tap="pay">立即付款</view>
</view>
</view>