|
@@ -147,7 +147,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="未认领(元)" align="center" prop="notClaimAmount">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span style="color:red">{{ row.amount-row.claimAmount }}</span>
|
|
|
+ <span style="color:red">{{ row.notClaimAmount}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="认领人" align="center" prop="claimUser">
|
|
@@ -594,6 +594,9 @@ export default {
|
|
|
if (this.claimDate2) {
|
|
|
this.listQuery2.xStartDate = this.claimDate2[0] + ' 00:00:00';
|
|
|
this.listQuery2.xEndDate = this.claimDate2[1] + ' 23:59:59';
|
|
|
+ }else{
|
|
|
+ this.listQuery2.xStartDate = null;
|
|
|
+ this.listQuery2.xEndDate = null;
|
|
|
}
|
|
|
this.$api.financeRealFund.realClaimed(Object.assign({}, this.listQuery2)).then(res => {
|
|
|
if (res.code === 200) {
|
|
@@ -787,7 +790,10 @@ export default {
|
|
|
if (this.claimDate) {
|
|
|
this.listQuery1.xStartDate = this.claimDate[0] + ' 00:00:00';
|
|
|
this.listQuery1.xEndDate = this.claimDate[1] + ' 23:59:59';
|
|
|
- }
|
|
|
+ }else {
|
|
|
+ this.listQuery1.xStartDate = null;
|
|
|
+ this.listQuery1.xEndDate = null;
|
|
|
+ }
|
|
|
this.$api.financeClaim.claimPage(Object.assign({}, this.listQuery1)).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
loadingInstance.close();
|