我的订单点击跳转订单详情页;订单详情页展示订单总金额;立即下单可以选择商品数量
This commit is contained in:
@@ -16,8 +16,13 @@
|
||||
|
||||
<view class="container">
|
||||
|
||||
<!-- 无订单时显示 -->
|
||||
<view wx:if="{{orderList.length==0}}" style="text-align: center; margin-top: 30vh;">
|
||||
该筛选条件下无订单
|
||||
</view>
|
||||
|
||||
<!-- 订单列表 -->
|
||||
<view class="order-card" wx:for="{{orderList}}" wx:for-item="item" wx:key="id">
|
||||
<view class="order-card" wx:for="{{orderList}}" wx:for-item="item" wx:key="id" bindtap="bindOrderDetailTap" data-orderdetail="{{item}}">
|
||||
<view>
|
||||
<text class="order-info-key">订单号:</text>
|
||||
<text>{{ item.id }}</text>
|
||||
|
Reference in New Issue
Block a user