MicroCommunityWeb/public/pages/oa/workDeduction/workDeduction.html
2025-02-25 21:18:30 +08:00

117 lines
5.6 KiB
HTML

<div>
<div class="ibox ">
<div class="ibox-title">
<h5>
<vc:i18n name="查询条件"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;"></div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入处理人','workDeduction')"
v-model.trim="workDeductionInfo.conditions.staffNameLike" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入扣款人','workDeduction')"
v-model.trim="workDeductionInfo.conditions.deductionPersonNameLike" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryWorkDeductionMethod()">
<vc:i18n name="查询" namespace="workDeduction"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="工单扣款" namespace="workDeduction"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;"></div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='员工名称' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时间段' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center" >
<vc:i18n name='内容' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='完成时间' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='说明' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='评分' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='扣款金额' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='扣款说明' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='扣款人' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时间' namespace='workDeduction'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="work in workDeductionInfo.works">
<td class="text-center">{{work.staffName}}</td>
<td class="text-center">{{work.startTime}}<br>~{{work.endTime}}</td>
<td class="text-center" style="width: 400px;"><div>{{work.content}}</div></td>
<td class="text-center">{{work.finishTime}}</td>
<td class="text-center">
<span v-if="work.state == 'CC'">抄送人已办理</span>
<span v-else-if="work.state == 'C'">处理人已办理</span>
<span v-else>待处理</span>
</td>
<td class="text-center">{{work.remark || '-'}}</td>
<td class="text-center">
{{work.score}}
</td>
<td class="text-center">
{{work.deductionMoney}}
</td>
<td class="text-center">{{work.deductionReason}}
</td>
<td class="text-center">{{work.deductionPersonName}}</td>
<td class="text-center">{{work.createTime||'-'}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_toWorkDetailPage(work)">
<vc:i18n name='详情'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>