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.

17 lines
794 B

5 years ago
<!--pages/list/museum/index.wxml-->
<search bind:onload="search"></search>
<view class="list">
<view bindtap="gotoDetail" data-item="{{item}}" url="/pages/info/museumInfo/index?id={{item.id}}" class="item" wx:for="{{list}}">
<image src="{{item.headimg}}" mode="aspectFill"></image>
<view class="info textOver">
<view class="title textOver">{{item.title}}</view>
<view class="address textOver">地址:{{item.address}}</view>
<view class="tel textOver">电话:{{item.tel}}</view>
<view class="btn">点击预约</view>
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
5 years ago
<image mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
5 years ago
<view>暂无内容</view>
</view>