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.
33 lines
1.4 KiB
33 lines
1.4 KiB
<!-- 搜索 -->
|
|
<!-- <block>
|
|
<view class="search">
|
|
<van-search use-left-icon-slot shape="round" background="#eb3015" value="{{ name }}" placeholder="请输入姓名搜索" bind:change="keyWordsChange" bind:search="keyWordsSearch">
|
|
<image mode="aspectFit" class="icon-search" slot="left-icon" src="../../img/icon-search-white.png"></image>
|
|
</van-search>
|
|
</view>
|
|
<view style="height: 130rpx;"></view>
|
|
</block> -->
|
|
|
|
<!-- 列表 -->
|
|
<view class="table-body" wx:if="{{listData.length>0}}">
|
|
<van-radio-group value="{{ radio }}" bind:change="onChange">
|
|
<view class="list {{radio==item.id?'on':''}}" wx:for="{{listData}}" wx:key="index" data-name="{{item.id}}" bind:tap="onClick">
|
|
<view class="left-name">
|
|
<view>{{item.tenantName}}({{item.tenantType=='1'?'个人':'单位'}})</view>
|
|
<view class="mt-10" wx:if="{{item.tenantType=='1'}}">身份证号:{{item.idCode}}</view>
|
|
<view class="mt-10" wx:else>信用代码:{{item.regno}}</view>
|
|
</view>
|
|
<view class="opt">
|
|
<van-radio checked-color="#0a6597" name="{{item.id}}"></van-radio>
|
|
</view>
|
|
</view>
|
|
</van-radio-group>
|
|
</view>
|
|
<van-empty description="暂无数据" wx:else />
|
|
<view style="height: 80rpx;"></view>
|
|
<!-- 底部按钮 -->
|
|
<view class="footer">
|
|
<view style="flex: 1;" bindtap="back">取消</view>
|
|
<view style="flex: 2;" class="long" bind:tap="submit" wx:if="{{radio}}">确定</view>
|
|
</view>
|