From 9e9646e2f232bd0886e529072f5452af54526b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A2=81=E5=AD=90=E9=BE=99?= <14096380+qwe963852@user.noreply.gitee.com> Date: Tue, 24 Sep 2024 10:18:38 +0800 Subject: [PATCH] =?UTF-8?q?test:=E6=95=85=E9=9A=9C=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E6=95=B0=E6=8D=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/breakdown/log/index.vue | 48 ++++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/src/views/breakdown/log/index.vue b/src/views/breakdown/log/index.vue index 4217d2b..4d0f06c 100644 --- a/src/views/breakdown/log/index.vue +++ b/src/views/breakdown/log/index.vue @@ -9,6 +9,14 @@ + + @@ -17,6 +25,13 @@ + @@ -24,7 +39,16 @@ + + + @@ -33,16 +57,17 @@ + - + @@ -63,6 +88,9 @@ export default { StatusProcessList:[], StatusIgnoreList:[], total:0, + totalIgnore:0, + totalProcess:0, + totalSolve:0, queryParams:{ pageNum:1, pageSize:10, @@ -90,7 +118,7 @@ export default { getListIgnore(){ listStatusIgnore(this.queryParams).then(response => { this.StatusIgnoreList = response.data.rows; - this.total = response.data.total; + this.totalIgnore = response.data.total; this.loading = false; }).catch(() => { this.loading = false; @@ -99,7 +127,7 @@ export default { getListProcess(){ listStatusProcess(this.queryParams).then(response=>{ this.StatusProcessList=response.data.rows; - this.total=response.data.total; + this.totalProcess=response.data.total; this.loading=false; }).catch(()=>{ this.loading=false @@ -108,7 +136,7 @@ export default { getListSolve(){ listStatusSolve(this.queryParams).then(response=>{ this.StatusSolveList=response.data.rows; - this.total=response.data.total; + this.totalSolve=response.data.total; this.loading=false; }).catch(()=>{ this.loading=false