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.
30 lines
1.2 KiB
30 lines
1.2 KiB
<!--pages/auctionRecord.wxml--> |
|
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="竞拍记录"></mp-navigation-bar> |
|
<view class="table"> |
|
<view class="tr bg-w"> |
|
<view class="th1">排名</view> |
|
<view class="th2">举牌企业</view> |
|
<view class="th">举牌价(万元)</view> |
|
<view class="th">名义楼面价(元/m2)</view> |
|
<view class="th">无偿移交比例(%)</view> |
|
</view> |
|
<block wx:for="{{listData}}" wx:key="index"> |
|
<view class="tr bg-g" wx:if="{{index % 2 == 0}}"> |
|
<view class="td1">{{item.ranking}}</view> |
|
<view class="td2">{{item.raiseEnterprise}}</view> |
|
<view class="td">{{item.raisePrice}}</view> |
|
<view class="td">{{item.nominalFloorPrice}}</view> |
|
<view class="td">{{item.percentUnpaidTransfers}}</view> |
|
</view> |
|
<view class="tr" wx:else> |
|
<view class="td1">{{item.ranking}}</view> |
|
<view class="td2">{{item.raiseEnterprise}}</view> |
|
<view class="td">{{item.raisePrice}}</view> |
|
<view class="td">{{item.nominalFloorPrice}}</view> |
|
<view class="td">{{item.percentUnpaidTransfers}}</view> |
|
</view> |
|
</block> |
|
</view> |
|
<view wx:if="{{listData.length <= 0}}" class="noText">暂无数据</view> |
|
</view> |