12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--pages/home/search/search.wxml-->
- <import src="/pages/home/public/public.wxml"/>
- <scroll-view class="bg-scroll-view" scroll-y>
- <view class="top">
- <template is="search-view" data="{{...search}}"/>
- <view class="cancel" bindtap="backpage">取消</view>
- </view>
- <!-- 无关键词默认搜索 -->
- <!-- <block wx:if="{{issearch}}">
- <view class="recommend">
- <view wx:for="{{recommend}}" wx:key="{{index}}" class="recommend-item">
- <image src="{{item.img}}"></image>
- <text>{{item.name}}</text>
- </view>
- </view>
- <view class="hot-search">
- <view>热门搜索</view>
- <view>
- <view class="hot-tips" wx:for="{{hotSearch}}" data-name="{{item}}" wx:key="{{index}}">{{item}}</view>
- </view>
- </view>
- <view class="region-title">常见问题</view>
- <template is="question" data="{{...question}}"/>
- </block> -->
- <!-- 关键词搜索 -->
- <block hidden="{{titltRange.length == 0}}" wx:for="{{titltRange}}" wx:key="{{index}}">
- <button open-type="getUserInfo" data-ids="{{item.id}}" data-title="{{item.title}}" bindgetuserinfo="getUserInfo">
- <view data-ids="{{item.id}}" class="result-item" bindtap="toproblem">
- {{item.title}}
- </view>
- </button>
- </block>
- <view hidden="{{titltRange.length != 0}}" class="defaultpage">
- <image src="/icon/search/quesheng.png"></image>
- <text>暂时找不到您搜索的内容</text>
- </view>
- </scroll-view>
|