35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
<view class="teamPerformance">
|
|
<view class="content">
|
|
<view class='rationList ul'>
|
|
<view class="li" wx:for="{{recordsList}}" wx:key="index">
|
|
<view class="detail">
|
|
<view class="header">
|
|
<view class="month p">
|
|
<text class="span">订单编号</text>
|
|
<text class="order_number span">{{item.order_sn}}</text>
|
|
</view>
|
|
<view class="month p">
|
|
<text class="span">订单金额</text>
|
|
<text class="number sapn">{{item.price}}</text>
|
|
</view>
|
|
<view class="month p">
|
|
<text class="span">商品数量</text>
|
|
<text class="number sapn">{{item.goods_total}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="list_box">
|
|
<view class="list" wx:for="{{item.has_many_order_goods}}" wx:key="index">
|
|
<view class="info">
|
|
<image src="{{item.thumb}}" mode="aspectFill" alt="商品图片" />
|
|
<text class="span">{{item.title}}</text>
|
|
</view>
|
|
<view class="price p">{{item.price}}</view>
|
|
<view class="p">{{item.total}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<shopfoot></shopfoot> |