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.
|
|
|
|
<!--pages/pbService/group/index.wxml-->
|
|
|
|
|
<title title="场馆列表"></title>
|
|
|
|
|
<view class="fixed-search">
|
|
|
|
|
<view class="search-box">
|
|
|
|
|
<view class="iconfont icon-sousuo"></view>
|
|
|
|
|
<input bindinput="changeKeywords" placeholder="请输入关键字查找" />
|
|
|
|
|
<view class="btn" bindtap="search">搜索</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view style="height:60rpx"></view>
|
|
|
|
|
<navigator url="/pages/info/museumInfo/index?id={{item.id}}&isGroup=1" class="group-item" wx:for="{{list}}">
|
|
|
|
|
<image src="{{item.headimg}}" mode="aspectFill"></image>
|
|
|
|
|
<view class="group-info">
|
|
|
|
|
<view class="group-title textOver">{{item.title}}(团体预约)</view>
|
|
|
|
|
<view class="iconfont textOver"><text class="icon-dianhua3"></text>电话:{{item.tel}}</view>
|
|
|
|
|
<view class="iconfont textOver"><text class="icon-location1"></text>{{item.address}}</view>
|
|
|
|
|
<view class="group-bottom">
|
|
|
|
|
<view class="group-price" wx:if="{{!item.price || item.price==0}}">免费</view>
|
|
|
|
|
<view class="group-price group-price-tip" wx:else>{{item.price/100}}</view>
|
|
|
|
|
<view class="group-btn">点击预约</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</navigator>
|
|
|
|
|
<view wx:if="{{list.length==0}}" style="text-align:center;line-height:100rpx;font-size:28rpx;color:#666">暂无数据</view>
|