mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
71 lines
2.8 KiB
HTML
71 lines
2.8 KiB
HTML
<div>
|
|
<div class="row margin-top-lg">
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model.trim="workDetailCopyInfo.staffNameLike" type="text"
|
|
:placeholder="vc.i18n('请填写抄送人','workDetailCopy')" class="form-control">
|
|
</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="_queryWorkDetailCopy()">
|
|
<i class="fa fa-search"></i>查询
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_resetWorkDetailCopy()">
|
|
<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="workDetailCopy"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="抄送人" namespace="workDetailCopy"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="创建时间" namespace="workDetailCopy"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="状态" namespace="workDetailCopy"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="说明" namespace="workDetailCopy"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="copy in workDetailCopyInfo.copys">
|
|
<td class="text-center">
|
|
{{copy.copyId}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{copy.staffName}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{copy.createTime}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{copy.stateName}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{copy.remark}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="5">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="text-right">
|
|
<vc:create namespace="workDetailCopy" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div> |