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
<!--pages/preview-list/preview-list.wxml--> |
|
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="预览"></mp-navigation-bar> |
|
<view class="table"> |
|
<view class="tr bg-w"> |
|
<view class="th">文件名</view> |
|
<view class="th1">操作</view> |
|
</view> |
|
<scroll-view scroll-y="{{true}}" style="height: 43rem;"> |
|
<block wx:for="{{previewFileList}}" wx:key="index"> |
|
<view class="tr bg-g" wx:if="{{index % 2 == 0}}"> |
|
<view class="td">{{item.fileName}}</view> |
|
<view class="td2"> |
|
<text class="see" bindtap='preview' data-type="{{item.filePath}}">点击查看</text> |
|
</view> |
|
</view> |
|
<view class="tr" wx:else> |
|
<view class="td">{{item.fileName}}</view> |
|
<view class="td2"> |
|
<text class="see" bindtap='preview' data-type="{{item.filePath}}">点击查看</text> |
|
</view> |
|
</view> |
|
</block> |
|
</scroll-view> |
|
</view> |
|
<view wx:if="{{previewFileList.length <= 0}}" class="noText">暂无数据</view> |
|
<loading hidden="{{loadingHidden}}"> |
|
加载中... |
|
</loading> |
|
</view> |