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.

29 lines
1.3 KiB

<!--pages/dataScreening/dataScreening.wxml-->
<view class="content">
<view class="content-title" wx:for="{{list}}" wx:key="index">
<view class="content-title-num content-title-text">
<image src="../../img/content-list-info-top-name-img.png" class="content-list-info-top-img" />
{{item.tenant_name}} <view style="margin-left: 20rpx;">{{item.mobile}} </view>
</view>
<view class="content-title-agent-name content-title-text">
<image src="../../img/content-list-info-address-img.png" class="content-list-info-address-img" />
{{item.address}}
</view>
<view class="content-line"></view>
<view class="content-title-bottom content-title-text">
<view class="content-title-time">{{item.create_time}}</view>
<view class="content-title-button" bindtap="creditChecking" wx:if="{{item.credit!=1}}" data-id="{{item.id}}" data-index="{{index}}">
信息校验
</view>
<view class="content-title-button" bindtap="goEntryInfo" data-projectId="{{item.id}}" wx:if="{{item.credit==1}}">
信息登记
</view>
</view>
</view>
</view>
<view class="buttom-margin"></view>
<view class="from-submit-buttom">
<view class="from-submit-buttom-confirm" bindtap="goDataScreeningDetails">准入登记</view>
</view>