35 lines
1.5 KiB
Plaintext
35 lines
1.5 KiB
Plaintext
<loading wx:if="{{!show}}">加载中...</loading>
|
|
<view class="page log-detail" wx:if="{{show}}">
|
|
<view class="fui-list-group" wx:for="{{list}}">
|
|
<view class="fui-list" style="font-size: 24rpx;color: #000;">
|
|
<text selectable="true" style="margin-right:40rpx">申请{{textcomm}}: {{item.ordercommission+textyuan}}</text>
|
|
<text selectable="true">审核{{textcomm}}: {{item.orderpay+textyuan}}</text>
|
|
</view>
|
|
<view class="fui-list" style="background: #f9f9f9" wx:for="{{item.goods}}" wx:for-item="g">
|
|
<view class="fui-list-media">
|
|
<image src="{{g.thumb}}"></image>
|
|
</view>
|
|
<view class="fui-list-inner">
|
|
<view class="row">
|
|
<view class="row-text">{{g.title}}</view>
|
|
</view>
|
|
<view class="subtitle">{{textcomm}}: {{g.commission+textyuan}}</view>
|
|
</view>
|
|
<view class="row-remark">
|
|
<view>{{g.level}}级</view>
|
|
<view class="text-danger">{{g.statusstr}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="fui-list">
|
|
<view class="fui-list-inner">
|
|
<view class="subtitle2">
|
|
<text selectable="true">订单编号: {{item.ordersn}}</text>
|
|
</view>
|
|
<view class="subtitle2">
|
|
<text selectable="true">订单金额: {{item.goodsprice+textyuan}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|