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.
 

31 lines
1.4 KiB

<!--pages/pbService/museum/index.wxml-->
<title title="博物馆查询"></title>
<view class="search-top-box">
<view class="search-box">
<view class="iconfont icon-sousuo"></view>
<input type="text" bindinput="changeKeyword" placeholder="请输入关键字查找" />
<view class="search-btn" bindtap="search">搜索</view>
</view>
<view class="search-menus">
<view class="search-menu {{type==1?'active':''}}" bindtap="changeType" data-type="1">博物馆</view>
<view class="search-menu {{type==2?'active':''}}" bindtap="changeType" data-type="2">陈列馆</view>
<view class="search-menu {{type==3?'active':''}}" bindtap="changeType" data-type="3">纪念馆</view>
<view class="search-menu {{type==4?'active':''}}" bindtap="changeType" data-type="4">美术馆</view>
</view>
</view>
<view style="height:180rpx"></view>
<navigator url="info/index?id={{item.id}}" class="item" wx:for="{{list}}">
<image src="{{item.headimg || '/images/place2.png'}}" mode="aspectFill"></image>
<view class="right-info">
<view class="textOver title">{{item.name}}</view>
<view class="icon-box textOver">
<view class="iconfont icon-dianhua1"></view>
<view class="textOver">{{item.phone}}</view>
</view>
<view class="icon-box textOver">
<view class="iconfont icon-location1"></view>
<view class="textOver">{{item.address}}</view>
</view>
</view>
</navigator>
<view class="nodata" wx:if="{{total==0}}">暂无数据</view>