34 lines
970 B
Plaintext
34 lines
970 B
Plaintext
<view id="predict_income">
|
|
<van-tabs active="{{dividend_type}}"
|
|
bind:change="swichTabTItem"
|
|
|
|
>
|
|
<van-tab title="{{item.name}}"
|
|
data-id="{{item.id}}"
|
|
wx:for="{{title}}" :key="index"
|
|
></van-tab>
|
|
</van-tabs>
|
|
<view class="content"
|
|
>
|
|
<view class="list-wrap"
|
|
>
|
|
<view class="list"
|
|
wx:for="{{datas}}"
|
|
:key="index">
|
|
<view class="list-content"
|
|
>
|
|
<view class="top">
|
|
<text>{{ item.order_sn }}</text>
|
|
<text class="num">+{{ item.dividend_amount }}</text>
|
|
</view>
|
|
<view class="bottom">
|
|
<text>{{ item.created_at }}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{datas.length <= '0'}}" style="width: 100%;text-align: center;color: #666;margin-top: 100rpx;">暂无记录...</view>
|
|
</view>
|
|
</view> |