mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 10:49:36 +08:00
24 lines
1.2 KiB
Plaintext
24 lines
1.2 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:100%;" scroll-y="true">
|
||
|
<view wx:for='{{parkList}}' wx:key="index" data-index="{{index}}" style="background: white;">
|
||
|
<view bindtap="changePark" data-id="{{item.id}}"
|
||
|
data-name="{{item.parkName}}">
|
||
|
<view class="detailbox" style="width: 90%;margin: 0 auto;">
|
||
|
<view style="padding: 3% 0;" class="borderBottom">
|
||
|
<image src="{{item.pic? DOMAIN_NAME+item.pic: '/images/user-unlogin.jpg'}}"
|
||
|
style="width:100rpx;height:100rpx;oberflow:hidden;border-radius:10%;" mode="widthFix"></image>
|
||
|
<view style="display: inline-block;line-height: 46rpx;margin-left: 4%;width: 80%;">
|
||
|
<view class="titleC"
|
||
|
style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size:12pt;margin:0;">
|
||
|
{{item.parkName}}
|
||
|
</view>
|
||
|
<view class="detailTextC">{{item.address}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</scroll-view>
|