小程序商品列表页优化;添加我的订单页面
This commit is contained in:
17
weixin-miniprogram/pages/shop/myOrder.wxml
Normal file
17
weixin-miniprogram/pages/shop/myOrder.wxml
Normal file
@@ -0,0 +1,17 @@
|
||||
<!--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>
|
Reference in New Issue
Block a user