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.
 

59 lines
3.3 KiB

<!-- <search-header bind:onload="search"></search-header> -->
<title title="游记攻略"></title>
<view class="search-box">
<view class="iconfont icon-sousuo"></view>
<input type="text" bindinput="changeKeyword" placeholder="请输入搜索关键字" />
<view class="search-btn" bindtap="search">搜索</view>
</view>
<image lazy-load class="topimg" src="https://m.cloud.sz-trip.com/static/images/TravelNotesIntroduction/topBac.png" mode="widthFix"></image>
<view class="types">
<view class="type {{type==0?'active':''}}" bindtap="changeType" data-type="0">
<image lazy-load wx:if="{{type==0}}" class="bgimg" src="https://m.cloud.sz-trip.com/static/images/TravelNotesIntroduction/navBacActive.png" mode="aspectFill"></image>
<image lazy-load wx:else class="bgimg" src="https://m.cloud.sz-trip.com/static/images/TravelNotesIntroduction/navBac.png" mode="aspectFill"></image>
<image lazy-load class="iconimg" src="https://static.ticket.sz-trip.com/xcxImages/listtop/gl{{type==0?'0':'new1'}}.png" mode="aspectFill"></image>
<view>达人攻略</view>
</view>
<view class="type {{type==1?'active':''}}" bindtap="changeType" data-type="1">
<image lazy-load wx:if="{{type==1}}" class="bgimg" src="https://m.cloud.sz-trip.com/static/images/TravelNotesIntroduction/navBacActive.png" mode="aspectFill"></image>
<image lazy-load wx:else class="bgimg" src="https://m.cloud.sz-trip.com/static/images/TravelNotesIntroduction/navBac.png" mode="aspectFill"></image>
<image lazy-load class="iconimg" src="https://static.ticket.sz-trip.com/xcxImages/listtop/sc{{type==1?'0':'new1'}}.png" mode="aspectFill"></image>
<view>官方手册</view>
</view>
</view>
<view class="list" wx:if="{{type==0}}">
<navigator url="/pages/info/strategyInfo/index?id={{item.id}}" class="item" wx:for="{{list}}">
<view class="title textOver">
<text class="textOver">{{item.title}}</text>
<image lazy-load wx:if="{{item.is_hot==1}}" src="https://static.ticket.sz-trip.com/xcxImages/listtop/hot.png" mode="widthFix"></image>
</view>
<view class="subtitle textOver2">{{item.subtitle}}</view>
<view class="strategy-bottom">
<image lazy-load src="{{item.avatar}}" mode="aspectFill"></image>
<view class="author-name">{{item.nickname}}</view>
<view class="iconfont icon-xin"></view>
<text>{{item.like_number}}</text>
<view class="iconfont icon-eye"></view>
<text>{{item.view_number}}</text>
</view>
</navigator>
</view>
<view class="list" wx:if="{{type==1}}">
<view bindtap="gotoGuide" data-item='{{item}}' url="/pages/info/guideInfo/index?id={{item.id}}" class="item" wx:for="{{list}}">
<view class="title textOver">
<text class="textOver">{{item.title}}</text>
<image lazy-load wx:if="{{item.is_hot==1}}" src="https://static.ticket.sz-trip.com/xcxImages/listtop/hot.png" mode="widthFix"></image>
</view>
<view class="subtitle textOver2"> </view>
<view class="strategy-bottom">
<view style="margin-left:0" class="iconfont icon-eye"></view>
<text>{{item.view_number}}</text>
<view style="flex:1"></view>
<view class="btn">查看详情 ></view>
</view>
</view>
</view>
<view style="height:60rpx"></view>
<view wx:if="{{list.length==0 && total==0}}" class="common-empty" style="z-index:-1;top:300rpx">
<view>暂无内容</view>
</view>