20 lines
699 B
Plaintext
20 lines
699 B
Plaintext
<view>
|
|
<view class="order-list" wx:if="{{order_list.length}}">
|
|
<view wx:for="{{order_list}}" wx:key="{{index}}" wx:for-item="item">
|
|
<view class="Group" bindtap="activity" data-id="{{item.id}}">
|
|
|
|
|
|
<view style="margin-left: 34rpx;">
|
|
<view wx:if="{{item.type==1}}" class="title1">退款到账</view>
|
|
<view wx:if="{{item.type==-1}}" class="title1">提现</view>
|
|
<view class="title2">{{item.time}}</view>
|
|
</view>
|
|
|
|
|
|
<view style="position: absolute;right: 24rpx;">
|
|
<view class="Price1">¥{{item.money}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |