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.
42 lines
2.1 KiB
42 lines
2.1 KiB
<!--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" hover-class="none">搜索</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="archives-dept" wx:if="{{deptId!=''}}">{{deptName}}档案</view>
|
|
<view class="archives-list" wx:if="{{listType!=0}}">
|
|
<view
|
|
wx:for="{{archivesList}}"
|
|
wx:for-index="index"
|
|
wx:for-item="item"
|
|
wx:key="index"
|
|
class="search-archives-item" bindtap="goToArchivesDetail" data-archive-id="{{item.id}}">
|
|
<view class="search-archives-id"><rich-text nodes="<div style='overflow:hidden;text-overflow:ellipsis;white-space:nowrap;'>档号:{{item.archivesNum}}</div>"></rich-text></view>
|
|
<view class="search-archives-line"></view>
|
|
<view class="search-archives-title"><rich-text nodes="题目:{{item.title}}"></rich-text></view>
|
|
<!-- <view >归档时间:{{item.archiveTime}}</view> -->
|
|
</view>
|
|
</view>
|
|
<view class="archives-list" wx:else>
|
|
<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 class="archives-id"><rich-text nodes="<div style='overflow:hidden;text-overflow:ellipsis;white-space:nowrap;'>档号:{{item.archivesNum}}</div>"></rich-text></view>
|
|
<view class="archives-title"><rich-text nodes="题目:{{item.title}}"></rich-text></view>
|
|
<view class="archives-line"></view>
|
|
<!-- <view >归档时间:{{item.archiveTime}}</view> -->
|
|
</view>
|
|
</view>
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
|
|
|
<no-data isShow="{{nodata}}"></no-data>
|
|
|