From bc0876384359587a8e5c2e6d0cb0b90af36f8fe5 Mon Sep 17 00:00:00 2001 From: wanyongkang <937888580@qq.com> Date: Wed, 25 Nov 2020 15:00:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=B4=E6=8A=A4=E5=AE=A2=E6=88=B7=E5=9F=BA?= =?UTF-8?q?=E6=9C=AC=E5=AE=8C=E5=96=84---=E7=82=B9=E5=87=BB=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/user/statistics.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/user/statistics.vue b/src/components/user/statistics.vue index d6bd408..2f5f0d5 100644 --- a/src/components/user/statistics.vue +++ b/src/components/user/statistics.vue @@ -184,6 +184,7 @@ @@ -200,6 +201,7 @@ @@ -222,6 +224,8 @@ export default { data () { return { loading: false, + cost_loading: false, + account_loading: false, retData: { TotalCount: 0, Data: [] }, dateRange1: [], dateRange2: [], @@ -359,14 +363,18 @@ export default { }, click_all_amount (row, index) { this.cost_fall = true + this.cost_loading = true this.$api.get(this.$api.phpURL + 'manager/UserFollow/getCostList', {id: row.Id, index: index, search: this.searchModel}).then(res => { this.cost_list = res.data + this.cost_loading = false }) }, click_account (row, index) { this.account_fall = true + this.account_loading = true this.$api.get(this.$api.phpURL + 'manager/UserFollow/getAccountList', {id: row.Id, index: index}).then(res => { this.account_list = res.data + this.account_loading = false }) }, dataExport () {