mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 21:19:37 +08:00
20 lines
1.0 KiB
Plaintext
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> |