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.
23 lines
1014 B
23 lines
1014 B
2 years ago
|
<!--subpages/houseAudit/page/index/index.wxml-->
|
||
|
<view>
|
||
|
<view class="tabs">
|
||
|
<view wx:for="{{childNav}}" wx:key="index" data-value="{{item.value}}" bind:tap="handleClickTab">
|
||
|
<text class="{{tabflag == item.value?'fontStyle':''}}">{{item.label}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<block wx:if="{{houseList.length!=0}}">
|
||
|
<view class="card" wx:for="{{houseList}}" wx:form-item="item" >
|
||
|
<view class="address">{{item.address}}</view>
|
||
|
<view class="bot">
|
||
|
<view>
|
||
|
发布时间{{item.createdData}}
|
||
|
</view>
|
||
|
<button data-item="{{item}}" style="background-color:{{tabflag=='0'?'#3284fe':tabflag=='1'?'#51ec7b':'#ff5a58'}}" bind:tap="handleClickBtn">{{tabflag=='0'?'去审核':tabflag=='1'?'已通过':'未通过'}}</button>
|
||
|
</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
<view class="no-data" wx:else>暂无信息</view>
|
||
|
<view style="display: {{loadMoreVisible ? 'flex' : 'none'}}" class="nomore-tip">没有更多了~</view>
|
||
|
</view>
|