84 lines
2.0 KiB
Plaintext
84 lines
2.0 KiB
Plaintext
<!--packageE/regionalAwards/regionalAwards.wxml-->
|
||
|
||
|
||
<view class="header">
|
||
<view class="face">
|
||
<image src="{{info.pic}}" alt=""></image>
|
||
</view>
|
||
<view class="desc">
|
||
<view class="name">{{info.name}}</view>
|
||
<view class="level">
|
||
{{info.level_name}}
|
||
|
||
<icon class="iconfont icon-icon_location" style="transform:translateY(-5px);font-size:26rpx;" wx:if="{{location.province || location.city}}"></icon>
|
||
<text wx:if="{{location.province}}">{{location.province}}-</text>
|
||
<text wx:if="{{location.city}}">{{location.city}}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="headerItems">
|
||
<view class="headerItem">
|
||
<view class="price">
|
||
¥{{statistics.amount}}
|
||
</view>
|
||
<view class="desc">累计奖励额度</view>
|
||
</view>
|
||
<view class="headerItem">
|
||
<view class="price">
|
||
¥{{statistics.already_reward}}
|
||
</view>
|
||
<view class="desc">累计释放额度</view>
|
||
</view>
|
||
<view class="headerItem">
|
||
<view class="price">
|
||
¥{{statistics.not_release}}
|
||
</view>
|
||
<view class="desc">未释放额度</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="spltBorder"></view>
|
||
|
||
<view class="recordHeader">
|
||
<view class="recordTitle">奖励额度记录</view>
|
||
</view>
|
||
|
||
<view class="recordList">
|
||
<view wx:for="{{listData}}" wx:key="id">
|
||
<view class="recordItem">
|
||
<view class="top">
|
||
<text class="c1">ID:{{item.id}} {{item.belongs_to_reward.area_name}}</text>
|
||
<view class="c2" data-id="{{item.id}}" bindtap="gotoAwardsRecord">
|
||
查看详情 <icon class="iconfont icon-advertise-next"></icon>
|
||
</view>
|
||
</view>
|
||
<view class="opts">
|
||
<view class="opt">
|
||
<view class="price">
|
||
¥{{item.amount}}
|
||
</view>
|
||
<view class="desc">累计奖励额度</view>
|
||
</view>
|
||
<view class="opt">
|
||
<view class="price">
|
||
¥{{item.already_reward}}
|
||
</view>
|
||
<view class="desc">累计释放额度</view>
|
||
</view>
|
||
<view class="opt">
|
||
<view class="price">
|
||
¥{{item.not_release}}
|
||
</view>
|
||
<view class="desc">未释放额度</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="spltBorder"></view>
|
||
</view>
|
||
|
||
|
||
|
||
</view>
|
||
|