MicroCommunityWeb/public/components/oa/workDetailCopy/workDetailCopy.html
2023-12-28 00:29:24 +08:00

61 lines
2.5 KiB
HTML

<div>
<div class="row margin-top-lg">
<div class="col-lg-2 padding-right-xs padding-left-xl">
<input v-model="workDetailCopyInfo.staffNameLike" type="text"
:placeholder="vc.i18n('请填写抄送人','workDetailCopy')" class="form-control">
</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="_qureyWorkDetailCopy()">
查询
</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>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="workDetailCopy" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>