mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
50 lines
2.2 KiB
HTML
50 lines
2.2 KiB
HTML
<div>
|
|
<div class="row margin-top-lg">
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="workDetailFileInfo.staffNameLike" type="text"
|
|
:placeholder="vc.i18n('请填写处理人','workDetailFile')" class="form-control">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="workDetailFileInfo.queryStartTime" type="text"
|
|
:placeholder="vc.i18n('开始时间','workDetailFile')" class="form-control fileQueryStartTime">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="workDetailFileInfo.queryEndTime" type="text"
|
|
:placeholder="vc.i18n('结束时间','workDetailFile')" class="form-control fileQueryEndTime">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-right-xl">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_qureyWorkDetailFile()">
|
|
查询
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<vc:i18n name="处理人" namespace="workDetailFile"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="附件" namespace="workDetailFile"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="event in workDetailFileInfo.files" v-if="event.fileType != 'S'">
|
|
<td class="text-center">
|
|
{{event.staffName}}
|
|
</td>
|
|
<td class="text-center">
|
|
<a :href="event.pathUrl" target="_blank">下载</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="text-right">
|
|
<vc:create namespace="workDetailFile" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div> |