2024-02-21 17:43:11 +08:00

20 lines
1.0 KiB
Plaintext

<view class='borderTop borderBottom' style='height:100rpx;background:white;display:flex'>
<input type="text" bindinput="getName"/>
<view style="width:22%;text-align:center;line-height:100rpx;font-size:30rpx;color:#6C6C6C" bindtap="search">搜索</view>
</view>
<scroll-view style="height:92%;background:white;" scroll-y="true">
<view wx:for='{{homelist}}' wx:key="index" data-index="{{index}}" bindtap="navDetail">
<view class="detailbox">
<view class="{{item.border? '':'borderBottom'}}" style="margin-left:22%;padding: 3% 0;">
<view class="titleC"
style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size:12pt;margin:0;">{{item.name}}
</view>
<view class="detailTextC">{{item.sector}}</view>
<view class="detailTextC">{{item.parkName}}</view>
<image src="/images/user-unlogin.png"
style="width:100rpx;height:100rpx;overflow:hidden;border-radius:50%;position:absolute;top:38rpx;left:36rpx;"
mode="widthFix"></image>
</view>
</view>
</view>
</scroll-view>