23 lines
907 B
Plaintext
23 lines
907 B
Plaintext
<!-- packageE/others/cloudwarehouse/cloudReleaseLog/cloudReleaseLog.wxml -->
|
|
<view id="cloudReleaseLog">
|
|
<view class="lis" wx:for="{{info}}" wx:key="index">
|
|
<view class="lis_top">
|
|
<view class="lis_top_l">
|
|
<view class="lis_top_l_t">{{item.buy_order.order_sn}}</view>
|
|
<view class="lis_top_l_b">{{item.created_at}}</view>
|
|
</view>
|
|
<view class="lis_top_r">
|
|
<view class="lis_top_r_t">订单金额</view>
|
|
<view class="lis_top_r_m">+{{item.buy_order.price}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="lis_bottom">
|
|
<view class="imgs">
|
|
<image src="{{item.buy_member.avatar_image}}" alt="" />
|
|
</view>
|
|
<view>{{item.buy_member.username}}</view>
|
|
</view>
|
|
<view style="height:20.16rpx;"></view>
|
|
</view>
|
|
<view style="color:#6666;text-align:center;padding-top:30rpx;" wx:if='{{info.length == 0}}'>暂无更多</view>
|
|
</view> |