mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 13:56:05 +08:00
81 lines
3.4 KiB
HTML
81 lines
3.4 KiB
HTML
<div>
|
|
<div class="row margin-top-lg">
|
|
<div class="col-md-1 padding-r-0">
|
|
<div class=" border-radius ">
|
|
<div class="margin-xs-r treeview ">
|
|
<ul class="list-group text-center border-radius">
|
|
<li class="list-group-item node-orgTree " v-for="(item,index) in aWorkDetailFileInfo.contents"
|
|
:key="index" @click="swatchFileContentId(item)"
|
|
:class="{'vc-node-selected':aWorkDetailFileInfo.contentId == item.contentId}">
|
|
问题{{item.seqNum}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-11">
|
|
<div class="row ">
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model.trim="aWorkDetailFileInfo.staffNameLike" type="text"
|
|
:placeholder="vc.i18n('请填写处理人','aWorkDetailFile')" class="form-control">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="aWorkDetailFileInfo.queryStartTime" type="text"
|
|
:placeholder="vc.i18n('开始时间','aWorkDetailFile')" class="form-control fileQueryStartTime">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="aWorkDetailFileInfo.queryEndTime" type="text"
|
|
:placeholder="vc.i18n('结束时间','aWorkDetailFile')" class="form-control fileQueryEndTime">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-right-xl" style="margin-top: 5px;">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_queryAWorkDetailFile()">
|
|
<i class="fa fa-search"></i>查询
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_resetAWorkDetailFile()">
|
|
<i class="fa fa-repeat"></i>重置
|
|
</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="aWorkDetailFile"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="附件" namespace="aWorkDetailFile"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="event in aWorkDetailFileInfo.files">
|
|
<td class="text-center">
|
|
{{event.staffName}}
|
|
</td>
|
|
<td class="text-center" v-if="event.fileType != 'S'">
|
|
<a :href="event.pathUrl" target="_blank">下载</a>
|
|
</td>
|
|
<td class="text-center" v-else>
|
|
--
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="2">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="text-right">
|
|
<vc:create namespace="aWorkDetailFile" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |