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.
 

103 lines
3.0 KiB

<!--components/detail-clinch/detail-clinch.wxml-->
<view class="table-box">
<view class="table-title">基本信息</view>
<view class="table">
<view class="table-item">
<view class="table-lable">
是否成交
</view>
<view class="table-info">
{{info.deal=='1'?'是':'否'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
出让方式
</view>
<view class="table-info">
{{info.transferMode?info.transferMode:'暂无数据'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
受让单位
</view>
<view class="table-info">
{{info.assignee?info.assignee:'暂无数据'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
企业简称
</view>
<view class="table-info">
{{info.landEnterpriseShort?info.landEnterpriseShort:'暂无数据'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
成交总价(万元)
</view>
<view class="table-info">
{{info.dealPrice?info.dealPrice:'暂无数据'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
无偿移交
</view>
<view class="table-info">
{{info.percentUnpaid?info.percentUnpaid:'暂无数据'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
商业自持
</view>
<view class="table-info">
{{info.commercialSelfRatio?info.commercialSelfRatio:'0'}}%,{{info.commercialSelfYear?info.commercialSelfYear:'0'}}年
</view>
</view>
<view class="table-item">
<view class="table-lable">
住宅自持
</view>
<view class="table-info">
{{info.homeSelfRatio?info.homeSelfRatio:'0'}}%,{{info.homeSelfYear?info.homeSelfYear:'0'}}年
</view>
</view>
<view class="table-item">
<view class="table-lable" style="white-space:pre-wrap">成交楼面价\n(元/㎡)</view>
<view class="table-info">
{{info.dealFloorPrice?info.dealFloorPrice:'暂无数据'}}
</view>
</view>
<view class="table-item">
<view class="table-lable">
溢价率
</view>
<view class="table-info">
{{info.premiumRate?info.premiumRate:'0'}}%
</view>
</view>
<view class="table-item">
<view class="table-lable">
参拍企业
</view>
<view class="table-info">
{{info.participatingEnterprises?info.participatingEnterprises:'暂无数据'}}
</view>
</view>
</view>
</view>
<view class="message">
<view class="m-box">
<text class="title">竞拍记录</text>
<!-- <image class="m-tag" src="../../assets/images/zhuan_1.png"></image> -->
</view>
<view class="m-info">
<text class="m-lable">竞拍记录:</text>
<text class="see" bindtap="goRecord">点击查看</text>
</view>
</view>