28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
<!-- 分期 -->
|
|
<view class="frozenTop">
|
|
<view class="frozenTop-text">
|
|
<view class="frozenTop-name">待发放(额度)</view>
|
|
<view class="frozenTop-number">{{blockeds}}</view>
|
|
</view>
|
|
<view class="frozenTop-tips"><image src="/static/img/grant_icon.png"></image>待发放期数详情</view>
|
|
<view class="frozenTop-btn">共 {{frozenData.length}} 期</view>
|
|
</view>
|
|
<view class="frozenCont" wx:if="{{frozenData.length > 0}}">
|
|
<view class="frozenTitle uni-border-bottom">分期</view>
|
|
<view class="frozenList uni-border-bottom" wx:for="{{frozenData}}" wx:key="frozenData">
|
|
<view class="frozenList-left">
|
|
<view class="frozenList-name"><image src="/static/img/frozen_time.png"></image>第{{item.num}}期</view>
|
|
<view class="frozenList-time">发放时间:{{item.start_at}}</view>
|
|
</view>
|
|
<view class="frozenList-number">
|
|
<view class="frozenList-yellow">+{{item.variable}}</view>
|
|
<view class="frozenList-variable">发放额度</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 暂无内容 -->
|
|
<view class="pack-center pages-hint" wx:else>
|
|
<image src="https://storage.funnyzhibo.com/images/2020/05/06/staff_null.png"></image>
|
|
<view>抱歉,目前暂无内容~</view>
|
|
</view> |