22 lines
630 B
Plaintext
22 lines
630 B
Plaintext
<view class="mingli-search-page">
|
|
<view class="section-card">
|
|
<text class="section-card__title">{{title}}</text>
|
|
<text class="section-card__item" wx:for="{{history}}" wx:key="index" data-keyword="{{item}}" bindtap="handleHistoryTap">
|
|
{{item}}
|
|
</text>
|
|
</view>
|
|
|
|
<view wx:if="{{results.length}}" class="section-card">
|
|
<text class="section-card__title">搜索结果</text>
|
|
<view
|
|
class="section-card__item"
|
|
wx:for="{{results}}"
|
|
wx:key="key"
|
|
data-route="{{item.route}}"
|
|
bindtap="handleResultTap"
|
|
>
|
|
{{item.title}} · {{item.subtitle}}
|
|
</view>
|
|
</view>
|
|
</view>
|