You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

20 lines
839 B

<!--pages/user/retail/list/index.wxml-->
<title title="订单明细"></title>
<view class="item" wx:for="{{list}}">
<view class="top-tip">
<text>订单编号:{{item.order_id}}</text>
<view>{{status[item.order_product[0].state]}}</view>
</view>
<view class="top-tip">
<text>创建时间:{{item.create_time}}</text>
<text>佣金:{{item.commission_price?item.commission_price/100:0}}</text>
</view>
<view class="item-info" wx:for="{{item.order_product}}" wx:for-item="product">
<image src="{{product.product_img}}" mode="aspectFill"></image>
<view class="item-title">{{product.product_title+product.sku_name}}</view>
<view class="item-right">
<view class="price">{{product.paid_money?product.paid_money/100:0}}</view>
<view>x {{product.product_num}}</view>
</view>
</view>
</view>