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.
|
|
|
<!--pages/user/profit/index.wxml-->
|
|
|
|
<view class="profit-page">
|
|
|
|
|
|
|
|
<view class="user-box acea-row row-middle">
|
|
|
|
<view class="avatar"><image src="{{userInfo.avatar}}"></image></view>
|
|
|
|
<view class="userInfo">
|
|
|
|
<view class="name">{{userInfo.nickname}}</view>
|
|
|
|
<view class="id-num">ID:{{userInfo.uid}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="profit-box">
|
|
|
|
<image src="../../../images/profit.png" class="profit-bg"></image>
|
|
|
|
<view class="profit-info">
|
|
|
|
<view class="acea-row row-between">
|
|
|
|
<view class="">
|
|
|
|
<view>今日收益</view>
|
|
|
|
<view class="fz40">{{userInfo.todayBrokerage}}积分</view>
|
|
|
|
</view>
|
|
|
|
<view class="">
|
|
|
|
<view>累计收益</view>
|
|
|
|
<view class="fz40">{{userInfo.brokeragePrice}}积分</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="to-cash-out" bindtap="toCashOut">去提现</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="int-list">
|
|
|
|
<view class="int-t">积分动态</view>
|
|
|
|
<view class="int-item" wx:for="{{integralList}}" wx:key="index">
|
|
|
|
<view>
|
|
|
|
<view class="title">{{item.title}}</view>
|
|
|
|
<view class="time colR">{{item.createTime}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="">
|
|
|
|
<view class="title fz40 colR">{{item.pm == 0 ? '-' : '+'}}{{item.number}}积分</view>
|
|
|
|
<view class="time">{{item.mark}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="loading-status">{{loadingStatus}}</view>
|
|
|
|
<!-- <view class="int-item">
|
|
|
|
<view>
|
|
|
|
<view class="title">禅易风云</view>
|
|
|
|
<view class="time colR">2021-11-26</view>
|
|
|
|
</view>
|
|
|
|
<view class="">
|
|
|
|
<view class="title fz40 colR">+500积分</view>
|
|
|
|
<view class="time">一级收益</view>
|
|
|
|
</view>
|
|
|
|
</view> -->
|
|
|
|
</view>
|
|
|
|
</view>
|