66 lines
3.0 KiB
Plaintext
66 lines
3.0 KiB
Plaintext
<view class="_search_html">
|
|
<view class="_search_header_input">
|
|
<view class="_search_he_in_warp">
|
|
<input class="_s_h_ttui_input" value="{{searchValue}}" placeholder="请输入您要搜索的内容"
|
|
placeholder-class="_s_h_ttui_input_placeholder" bindinput="handelSearchInput" />
|
|
<view class="_s_h_ttui_in_icon">
|
|
<image src="/static/search_icon.png" class="_s_h_ttui_in_ic_img"></image>
|
|
</view>
|
|
</view>
|
|
<view class="_search_he_in_btn" catchtap="handelKeyword">
|
|
<text class="_search_he_in_b_text">搜索</text>
|
|
</view>
|
|
</view>
|
|
<view class="_search_content">
|
|
<block tt:if="{{!searchFlag}}">
|
|
<view class="_search_con_history">
|
|
<view class="_search_con_his_he">
|
|
<view class="_search_con_hi_h_title">
|
|
<text class="_search_con_hi_h_ti_text">搜索历史</text>
|
|
</view>
|
|
<view class="_search_con_hi_h_clear" catchtap="cleanHistory">
|
|
<image src="/static/clear.png" class="_search_con_hi_h_c_img"></image>
|
|
</view>
|
|
</view>
|
|
<view class="_search_con_his_lis">
|
|
<block tt:for="{{historySearchList}}">
|
|
<view class="_search_con_his_l_item" tt:key="{{index}}" data-item="{{item}}" catchtap="handelHistoryItem">
|
|
<text class="_search_con_his_l_i_text">{{item}}</text>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
|
|
<block tt:elif="{{searchFlag && searchList.length}}">
|
|
<view class="_search_con_vi_lis">
|
|
<block tt:for="{{searchList}}">
|
|
<view class="_search_con_vi_l_item" tt:key="{{item.id}}" data-sid="{{item.id}}" catchtap="toPathVideo">
|
|
<view class="_search_con_vi_l_i_warp">
|
|
<view class="_search_con_vi_l_i_w_cover">
|
|
<image src="{{item.cover}}" class="__wa_img" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="_search_con_vi_l_i_w_info">
|
|
<view class="_search_con_vi_l_i_w_i_title">
|
|
<text class="_search_con_vi_l_i_w_i_t_text">{{item.name}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</block>
|
|
|
|
<block tt:elif="{{searchFlag}}">
|
|
<view class="_search_con_empty">
|
|
<view class="_search_c_e_img">
|
|
<image src="/static/empty.png" class="__wa_img_no_radius"></image>
|
|
</view>
|
|
<view class="_search_c_e_tips">
|
|
<text class="_search_c_e_t_text">暂时没有内容~</text>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
|
|
</view>
|
|
</view> |