17 lines
484 B
Plaintext
17 lines
484 B
Plaintext
<!--pages/shop/myOrder.wxml-->
|
|
<view class="container">
|
|
<view class="order-card" wx:for="{{orderList}}" wx:for-item="item" wx:key="id">
|
|
<view>
|
|
<text class="order-info-key">订单号:</text>
|
|
<text>{{ item.id }}</text>
|
|
</view>
|
|
<view>
|
|
<text class="order-info-key">创建时间:</text>
|
|
<text>{{ item.displayDate }}</text>
|
|
</view>
|
|
<view>
|
|
<text class="order-info-key">订单状态:</text>
|
|
<text>{{ item.orderStatus }}</text>
|
|
</view>
|
|
</view>
|
|
</view> |