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.
22 lines
790 B
22 lines
790 B
<!--subpages/oneKeyService/pages/search/search.wxml-->
|
|
<view class="top">
|
|
<view class="search">
|
|
<view class="item-all">
|
|
<view class="item-left">
|
|
<image src="../../images/search.png"></image>
|
|
<input placeholder-class="placeholder-style" placeholder="输入档案关键字" bindinput="bindInputValue" value="{{searchContent}}"></input>
|
|
</view>
|
|
<button class="item-right" bindtap="searchFile" hover-class="none">搜索</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="history">
|
|
<view
|
|
class="history-label {{item.hot?'hot-label':''}}"
|
|
wx:for="{{historylist}}"
|
|
wx:for-index="index"
|
|
wx:for-item="item"
|
|
wx:key="index">
|
|
{{item.label}}
|
|
</view>
|
|
</view>
|
|
|