1234567891011121314151617181920 |
- <view class="page">
- <view>
- <!--搜索框-->
- <view class="search_layout">
- <image class="search_layout_icon" src="../../../image/teacher/search_icon.png"></image>
- <input class="search_layout_input" placeholder="输入关键词搜索" hidden="{{hiddenInput}}" value="{{inputText}}" confirm-type="search" bindconfirm="inputSearch" />
- </view>
- <!--搜索框-->
- <view class="all_text_bg">
- <text class="all_text">全部文件</text>
- </view>
- </view>
- <scroll-view scroll-y="true" class="scrollview">
- <view wx:for="{{fileList}}" class="scroll_item_bg" wx:key="index">
- <fileItem itemData="{{item}}" bind:showWindow="showWindow" bind:hideWindow="hideWindow"> </fileItem>
- </view>
- </scroll-view>
- </view>
|