Commit 419c43d3 authored by rencs's avatar rencs

Merge branch 'dev-td' into 'master-td'

Dev td

See merge request !6
parents 1d92f1fc c142bf28
...@@ -108,8 +108,8 @@ ...@@ -108,8 +108,8 @@
> >
</div> </div>
<div style="width: 100%; text-align: right; margin-bottom: 10px"> <div style="width: 100%; text-align: right; margin-bottom: 10px">
<el-tag>支付总金额:{{ totalobj.totalAmount }}</el-tag>
<el-tag>总数:{{ totalobj.number }}</el-tag> <el-tag>总数:{{ totalobj.number }}</el-tag>
<el-tag>总金额:{{ totalobj.totalAmount }}</el-tag>
<el-tag>总佣金:{{ totalobj.totalComissonAmount }}</el-tag> <el-tag>总佣金:{{ totalobj.totalComissonAmount }}</el-tag>
</div> </div>
...@@ -305,6 +305,7 @@ export default { ...@@ -305,6 +305,7 @@ export default {
handleFilter() { handleFilter() {
this.listQuery.page = 1; this.listQuery.page = 1;
this.getList(); this.getList();
this.getTotalMount();
}, },
clearSearch() { clearSearch() {
this.listQuery = { this.listQuery = {
...@@ -320,9 +321,11 @@ export default { ...@@ -320,9 +321,11 @@ export default {
leaderPhone: undefined, leaderPhone: undefined,
}; };
this.getList(); this.getList();
this.getTotalMount();
}, },
getTotalMount() { getTotalMount() {
activeAmountTotal().then((res) => { this.listQuery.status = 6;
activeAmountTotal(this.listQuery).then((res) => {
if (res.status == 200) { if (res.status == 200) {
this.totalobj = res.data; this.totalobj = res.data;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment