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.
30 lines
1.1 KiB
30 lines
1.1 KiB
5 years ago
|
<!--subpages/understandJs/pages/archivesDept/archivesDept.wxml-->
|
||
|
<view class="top">
|
||
|
<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">搜索</button>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="archives-dept">{{dept}}</view>
|
||
|
<view class="archives-list">
|
||
|
<view
|
||
|
wx:for="{{archivesList}}"
|
||
|
wx:for-index="index"
|
||
|
wx:for-item="item"
|
||
|
wx:key="index"
|
||
|
class="archives-item" bindtap="goToArchivesDetail" data-archive-id="{{item.id}}">
|
||
|
<view >档号:{{item.archivesNum}}</view>
|
||
|
<view >题名:{{item.title}}</view>
|
||
|
<view >归档时间:{{item.archiveTime}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
||
|
|
||
|
<no-data isShow="{{nodata}}"></no-data>
|