MicroCommunityWeb/public/pages/property/payFeeBatch/payFeeBatch.html
2021-09-23 01:01:30 +08:00

107 lines
5.4 KiB
HTML

<div class="animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>查询条件</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请输入批次编号" v-model="payFeeBatchInfo.conditions.batchId"
class=" form-control">
</div>
</div>
<div class="col-sm-4">
<select class="custom-select" v-model="payFeeBatchInfo.conditions.state">
<option selected value="">请选择状态</option>
<option value="2006001">
正常
</option>
<option value="2007001">
申请取消
</option>
<option value="2008001">
审核通过
</option>
<option value="2009001">
审核失败
</option>
</select>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请填写创建员工"
v-model="payFeeBatchInfo.conditions.createUserName" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryPayFeeBatchMethod()">
<i class="fa fa-search"></i> 查询
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>取消费用</h5>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">批次号</th>
<th class="text-center">员工</th>
<th class="text-center">时间</th>
<th class="text-center">取消原因</th>
<th class="text-center">审核状态</th>
<th class="text-center">审核意见</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="payFee in payFeeBatchInfo.payFeeBatchs">
<td class="text-center">{{payFee.batchId}}</td>
<td class="text-center">{{payFee.createUserName}}</td>
<td class="text-center">{{payFee.createTime}}</td>
<td class="text-center">{{payFee.remark || '无'}}</td>
<td class="text-center">{{payFee.stateName}}</td>
<td class="text-center">{{payFee.msg}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-if="payFee.state == 2006001"
v-on:click="_openApply(payFee)">申请取消
</button>
<button class="btn-white btn btn-xs" v-if="payFee.state == 2007001"
v-on:click="_openPayFeeBatchAuditModel(payFee)">审核
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="9">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="property/applyDeleteFeeBatch" callBackListener="payFeeBatch" callBackFunction="notifyAuditInfo">
</vc:create>
<vc:create path="common/audit" callBackListener="payFeeBatch" callBackFunction="notifyAuditInfo"></vc:create>
</div>