forked from nsjcy/frontEnd/nsjcy

LAPTOP-RI7D261L\Mr Ke
2020-02-13 a2789abb73725738127b03d95c95081b66954916
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!--pages/flcx/flcx.wxml-->
<view class="cu-bar bg-white search solid-top" style="top:{{CustomBar}}px">
  <view class="search-form round">
    <text class="cuIcon-search"></text>
    <input type="text" placeholder="搜索" confirm-type="search" bindinput="searchIcon"></input>
  </view>
</view>
 
<!-- <view class="flex1">
  <view class="cu-bar bg-white margin-top">
    <view class="action">
      <text class="cuIcon-title text-blue"></text>热门搜索
    </view>
  </view>
 
  <view class="padding-sm flex flex-wrap">
    <view class="padding-xs" wx:for="{{wordList}}" wx:key  >
      <view class="cu-tag bg-white">{{item}}</view>
    </view>
  </view>
 
   <view class="cu-bar bg-white margin-top">
    <view class="action">
      <text class="cuIcon-title text-blue"></text>历史搜索
    </view>
  </view>
 
  <view class="padding-sm flex flex-wrap">
    <view class="padding-xs" wx:for="{{wordList}}" wx:key  >
      <view class="cu-tag bg-white">{{item}}</view>
    </view>
  </view>
</view> -->
 
<view class="flex1 bg-white margin-top">
  <view class="weui-panel weui-panel_access">
    <view class="weui-panel__bd">
      <view class="weui-media-box weui-media-box_text" wx:for="{{ items }}" wx:key="">
        <view class="weui-media-box__title weui-media-box__title_in-text">{{ item.title }}</view>
        <view class="weui-media-box__desc">{{ item.content }}</view>
      </view>
    </view>
  </view>
</view>