30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
<!--pages/member/income_details_info/income_details_info.wxml-->
|
|
<view class="commission">
|
|
<view class="atitem" wx:if="{{info}}">
|
|
<view class="title">{{info.title}}</view>
|
|
<view class="tbs" wx:for="{{info.data}}" wx:if="{{info}}" wx:key="index">
|
|
<view class="item1">{{item.title}}</view>
|
|
<view class="item2">{{item.value}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="atitem" wx:if="{{order}}">
|
|
<view class="title">{{order.title}}</view>
|
|
<view class="tbs" wx:for="{{order.data}}" wx:key="index">
|
|
<view class="item1">{{item.title}}</view>
|
|
<view class="item2">{{item.value}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="atitem" wx:if="{{goods}}">
|
|
<view class="title">{{goods.title}}</view>
|
|
<view>
|
|
<view class="tbs goods-info" wx:for="{{goods.data}}" wx:key="index">
|
|
<view class="goods" wx:for-item="g" wx:for="{{item}}" wx:for-index="gidx" wx:key="{{gidx}}">
|
|
<view class="item1">{{g.title}}</view>
|
|
<view class="item2">{{g.value}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<shopfoot></shopfoot>
|