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.
|
|
|
<view class="top">
|
|
|
|
<image class="topbk" src="../../images/archivesbk.png"/>
|
|
|
|
<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="dept-list">
|
|
|
|
<view
|
|
|
|
wx:for="{{deptList}}"
|
|
|
|
wx:for-index="index"
|
|
|
|
wx:for-item="item"
|
|
|
|
wx:key="index"
|
|
|
|
class="list-item" bindtap="navigateToDept" data-dept-id="{{item.deptId}}" data-dept="{{item.dept}}">
|
|
|
|
<view class="list-name">{{item.dept}}</view>
|
|
|
|
<image src="../../images/right.png" class="list-arrow"></image>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
|
|
|
|
|
|
|
<no-data isShow="{{nodata}}"></no-data>
|
|
|
|
|