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="输入关键词搜索" />
- </view>
- <!--搜索框-->
- <view class="all_text_bg">
- <text class="all_text">全部文件</text>
- </view>
- </view>
- <scroll-view scroll-y="true" class="scrollview">
- <view wx:for="{{20}}" class="scroll_item_bg" wx:key="index">
- <fileItem></fileItem>
- </view>
- </scroll-view>
- </view>
|