123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!--index.wxml-->
- <drop-down navItems="{{navItem}}" activeType="{{activeType}}" activeDist="{{activeDist}}" exhiNum="{{exhiNum}}" class="drop-con" bind:closeMask="onIsclose" bind:activeItem="getActiveItem" style="height:{{isShow?'100%':'0'}}"></drop-down>
- <view class='container'>
- <view class='nav-con'>
- <view class='yuezhan-nav'>
- <view class="search-navbar">
- <component-search></component-search>
- </view>
- <view class="yuezhan-navbar">
- <view bindtap='to_search' class='nav-tag nav-active'>{{locationName}}
- <text class='iconfont iconpaixuxialacaidan'></text>
- </view>
- <view class='nav-right'>
- <view bindtap='showDrop' data-id='dist' class='nav-tag'>{{activeDist}}
- <text class='iconfont iconpaixuxialacaidan'></text>
- </view>
- <view bindtap='showDrop' data-id='type' class='nav-tag'>{{activeType}}
- <text class='iconfont iconpaixuxialacaidan'></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <navigator hover-class='none' url="{{item.hasProduct&&!item.hasPay?('../yuezhan/pay_page/index?id='+item.id):(item.hasProduct?'../wv_page/index?id='+item.id:'../zl_detail/index?id='+item.id)}}" wx:for="{{exhibitionList}}" wx:key="index" class='fdkz-card'>
- <view class='fdkz-card-img'>
- <view class="fdkz-card-tag">
- <text class='fdkz-card-tag-txt'>{{item.statusText||'常设展'}}</text>
- </view>
- <image src="{{item.imageUrl||defaultImg}}" mode="aspectFill" class='item-img'></image>
- </view>
- <view class='fdkz-card-info'>
- <view class='fdkz-card-info-title'>
- <view class='title-txt'>
- {{item.name}}
- </view>
- </view>
- <view class='fdkz-card-info-date'>
- <view class='date-txt'>{{item.pavilionName}}</view>
- <view class='changguan_title'>
- <text class='iconfont iconweizhi'> {{item.distance||0}} km</text>
- </view>
- </view>
- <text></text>
- </view>
- </navigator>
- <view class="weui-loadmore" wx:if="{{loading}}">
- <view class="weui-loading"></view>
- <view class="weui-loadmore__tips">正在加载</view>
- </view>
- <view class='noDataClass' hidden='{{exhibitionList.length>0||loading}}'>
- <image class='no_exhibitionImg' mode='aspectFit' src='{{noExhibitionImg}}'></image>
- <view class="tips">
- 暂无展会信息
- </view>
- <view class='locationBtn' wx:if='{{getLocationBtn&&activeIndex==1}}'>
- <button type="warn" open-type='openSetting'>获取地理位置</button>
- </view>
- </view>
- </view>
- <view wx:if="{{showConfirm}}" class='comfirmDialog'>
- <view class='comfirmDialog_content'>
- <view class='comfirmDialog_content_tip'>
- <text>此处需要请求您的位置,请授予我们请求权限~</text>
- </view>
- <button type="warn" open-type='openSetting' bindopensetting="closeDialog">确定</button>
- </view>
- </view>
|