|
@@ -5,9 +5,9 @@
|
|
|
<section>
|
|
<section>
|
|
|
<div class="type-boxs">
|
|
<div class="type-boxs">
|
|
|
<div>
|
|
<div>
|
|
|
- <span class="marginr30">待解冻金额:{{totalCoins}}</span>
|
|
|
|
|
|
|
+ <span class="marginr30">待解冻金额:{{waitUnfrozenCoins}}</span>
|
|
|
<span class="marginr30">冻结订单数:{{totalCount}}</span>
|
|
<span class="marginr30">冻结订单数:{{totalCount}}</span>
|
|
|
- <span class="marginr30">待解冻订单数:{{count}}</span>
|
|
|
|
|
|
|
+ <span class="marginr30">待解冻订单数:{{waitUnfrozenCount}}</span>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="type-boxs">
|
|
<div class="type-boxs">
|
|
@@ -114,7 +114,7 @@
|
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
|
:page-size="20"
|
|
:page-size="20"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="count"
|
|
|
|
|
|
|
+ :total="searchCount"
|
|
|
></el-pagination>
|
|
></el-pagination>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -136,9 +136,14 @@ export default {
|
|
|
|
|
|
|
|
// 下发的总数据
|
|
// 下发的总数据
|
|
|
totalData: {},
|
|
totalData: {},
|
|
|
- orderStatus: "",
|
|
|
|
|
|
|
+ orderStatus: 1,
|
|
|
currentPage: 1,
|
|
currentPage: 1,
|
|
|
currentPageSize: 20,
|
|
currentPageSize: 20,
|
|
|
|
|
+ waitUnfrozenCount: 0,
|
|
|
|
|
+ searchCount: 0,
|
|
|
|
|
+ waitUnfrozenCoins: 0,
|
|
|
|
|
+ totalCoins: 0,
|
|
|
|
|
+ totalCount: 0,
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
mounted() {
|
|
mounted() {
|
|
@@ -171,9 +176,11 @@ export default {
|
|
|
}
|
|
}
|
|
|
const res = await this.$post(url, body);
|
|
const res = await this.$post(url, body);
|
|
|
this.tableData = res.data.list;
|
|
this.tableData = res.data.list;
|
|
|
- this.totalCoins=res.data.total_coins;
|
|
|
|
|
- this.totalCount=res.data.total_count;
|
|
|
|
|
- this.count=res.data.count;
|
|
|
|
|
|
|
+ this.totalCoins=res.data.totalCoins;
|
|
|
|
|
+ this.totalCount=res.data.totalCount;
|
|
|
|
|
+ this.waitUnfrozenCount=res.data.waitUnfrozenCount;
|
|
|
|
|
+ this.searchCount=res.data.searchCount;
|
|
|
|
|
+ this.waitUnfrozenCoins=res.data.waitUnfrozenCoins;
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
created() {
|
|
created() {
|