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.
55 lines
2.3 KiB
55 lines
2.3 KiB
2 years ago
|
<!--subpages/houseAudit/page/audit/audit.wxml-->
|
||
|
<view class="f-container">
|
||
|
<view class="card">
|
||
|
<!-- <view class="images">
|
||
|
<image src="../../../../images/rexian.png">
|
||
|
</image>
|
||
|
</view> -->
|
||
|
<view class="images">
|
||
|
<swiper bindchange="swiperChange">
|
||
|
<!-- wx:if="{{bannerList.length > 0}}" -->
|
||
|
<block>
|
||
|
<swiper-item wx:for="{{houseDetailObj.photoList}}" wx:key="index">
|
||
|
<!---->
|
||
|
<image data-src="{{item}}" mode="aspectFill" class="banner-img" src="{{item}}" bindtap="navigatetoBannerDetail" />
|
||
|
</swiper-item>
|
||
|
</block>
|
||
|
</swiper>
|
||
|
</view>
|
||
|
<view class="houseName">
|
||
|
<view> {{houseDetailObj.address}} <text>{{houseDetailObj.houseStatusDisplay}}</text></view>
|
||
|
<!-- wx:if="{{bannerList.length > 0}}" -->
|
||
|
<text>{{swiperCurrent}}/{{houseDetailObj.photoList.length}}</text>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view>单价 <text>{{houseDetailObj.price}}元/平</text></view>
|
||
|
<view>朝向 <text>{{houseDetailObj.orientation}}</text></view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view>楼层 <text>{{houseDetailObj.floor}}</text></view>
|
||
|
<view>电梯 <text>{{houseDetailObj.hasElevator==0?'无':'有'}}</text></view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view>套内 <text>{{houseDetailObj.insideArea}}</text></view>
|
||
|
<view></view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view>挂牌 <text>{{houseDetailObj.createdTime}}</text></view>
|
||
|
<view></view>
|
||
|
</view>
|
||
|
|
||
|
<view class="row">
|
||
|
<view>用途 <text>{{houseDetailObj.houseType==1?'住宅':houseDetailObj.houseType==2?'办公':'门头'}}</text></view>
|
||
|
<view></view>
|
||
|
</view>
|
||
|
<view class="describe">
|
||
|
<view>房屋描述</view>
|
||
|
<text>{{houseDetailObj.description}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view wx:if="{{tabFlag==0}}" class="botBtn">
|
||
|
<button class="yes" bind:tap="handleilcikAudit" data-value='1'>通过</button>
|
||
|
<button class="no" bind:tap="handleilcikAudit" data-value='-1'>不通过</button>
|
||
|
</view>
|
||
|
</view>
|