MicroCommunityWeb/public/pages/property/payFeeManage/payFeeManage.html
2022-04-26 19:22:36 +08:00

139 lines
9.3 KiB
HTML
Executable File

<div class="animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span><vc:i18n name="查询条件" namespace="payFeeManage"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
v-on:click="_moreCondition()">{{payFeeManageInfo.moreCondition == true?'隐藏':'更多'}}
</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<select class="custom-select" v-model="payFeeManageInfo.conditions.payObjType">
<option selected value="">{{vc.i18n('请选择收费对象','payFeeManage')}}</option>
<option v-for="(item,index) in payFeeManageInfo.payObjTypes" :key="index"
v-bind:value="item.statusCd">{{item.name}}
</option>
</select>
</div>
<div class="col-sm-3">
<div class="form-group">
<input size="16" type="text" :placeholder="vc.i18n('请选择缴费开始时间','payFeeManage')"
v-model="payFeeManageInfo.conditions.startTime"
class="form-control form_datetime start_time">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input size="16" type="text" :placeholder="vc.i18n('请选择缴费结束时间','payFeeManage')"
v-model="payFeeManageInfo.conditions.endTime"
class="form-control form_datetime end_time">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-md" v-on:click="_queryPayFeeMethod()">
<i class="fa fa-search"></i><span><vc:i18n name="查询" namespace="payFeeManage"></vc:i18n></span>
</button>
<button type="button" class="btn btn-info btn-md" v-on:click="_resetPayFeeMethod()"
style="margin-left: 20px;">
<i class="fa fa-repeat"></i><span><vc:i18n name="重置" namespace="payFeeManage"></vc:i18n></span>
</button>
</div>
</div>
<div class="row" v-show="payFeeManageInfo.moreCondition == true">
<div class="col-sm-4">
<input size="16" type="text" :placeholder="vc.i18n('请填写员工编码','payFeeManage')"
v-model="payFeeManageInfo.conditions.userCode" class="form-control">
</div>
<div class="col-sm-3">
<select class="custom-select" v-model="payFeeManageInfo.conditions.primeRate">
<option selected value="">{{vc.i18n('请选择支付方式','payFeeManage')}}</option>
<option v-for="(item,index) in payFeeManageInfo.primeRates" :key="index"
v-bind:value="item.statusCd">{{item.name}}
</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="缴费清单" namespace="payFeeManage"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportExcel()">
<i class="fa fa-plus"></i> <span><vc:i18n name="导出" namespace="payFeeManage"></vc:i18n></span>
</button>
</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"><span><vc:i18n name="费用类型" namespace="payFeeManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="费用项目" namespace="payFeeManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="付费方" namespace="payFeeManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="缴费" namespace="payFeeManage"></vc:i18n></span>ID</th>
<th class="text-center"><span><vc:i18n name="支付方式" namespace="payFeeManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="付费周期" namespace="payFeeManage"></vc:i18n></span>(单位:月)</th>
<th class="text-center"><span><vc:i18n name="应付金额" namespace="payFeeManage"></vc:i18n></span>(单位:元)</th>
<th class="text-center"><span><vc:i18n name="实付金额" namespace="payFeeManage"></vc:i18n></span>(单位:元)</th>
<th class="text-center"><span><vc:i18n name="操作员工" namespace="payFeeManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="缴费时间" namespace="payFeeManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="详情" namespace="payFeeManage"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="payFee in payFeeManageInfo.payFees">
<td class="text-center">{{payFee.feeTypeCdName}}</td>
<td class="text-center">{{payFee.feeName}}</td>
<td class="text-center">{{payFee.payObjName}}</td>
<td class="text-center">{{payFee.detailId}}</td>
<td class="text-center">{{payFee.primeRate}}</td>
<td class="text-center">{{payFee.cycles}}</td>
<td class="text-center">{{payFee.receivableAmount}}</td>
<td class="text-center">{{payFee.receivedAmount}}</td>
<td class="text-center">{{payFee.userName}}</td>
<td class="text-center">{{payFee.createTime}}</td>
<td class="text-center">
<button class="btn btn-link btn-xs" v-on:click="_detailFee(payFee)"><span><vc:i18n name="详情" namespace="payFeeManage"></vc:i18n></span></button>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="11">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-md-4">
<span class="margin-left"><span><vc:i18n name="小计应收" namespace="payFeeManage"></vc:i18n></span>: {{payFeeManageInfo.totalReceivableAmount}}<span><vc:i18n name="元" namespace="payFeeManage"></vc:i18n></span></span>
<span class="margin-left"><span><vc:i18n name="小计实收" namespace="payFeeManage"></vc:i18n></span>: {{payFeeManageInfo.totalReceivedAmount}}<span><vc:i18n name="元" namespace="payFeeManage"></vc:i18n></span></span>
</div>
<div class="col-md-8 text-center">
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
<div class="row">
<div class="col-md-4">
<span class="margin-left"><span><vc:i18n name="大计应收" namespace="payFeeManage"></vc:i18n></span>: {{payFeeManageInfo.allReceivableAmount}}<span><vc:i18n name="元" namespace="payFeeManage"></vc:i18n></span></span>
<span class="margin-left"><span><vc:i18n name="大计实收" namespace="payFeeManage"></vc:i18n></span>: {{payFeeManageInfo.allReceivedAmount}}<span><vc:i18n name="元" namespace="payFeeManage"></vc:i18n></span></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>