From a7e87bd68c71ba6a5dc31b14605f416ae23220c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?yinjinlu-pc=5C=E5=B0=B9=E9=87=91=E8=B7=AF?= <411641505@qq.com> Date: Tue, 12 Sep 2023 23:29:49 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E7=94=9F=E4=BA=A7=E8=BF=9B?= =?UTF-8?q?=E5=BA=A6=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/index.vue b/src/views/index.vue index f0df5c0..956eff6 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -110,7 +110,7 @@ export default { data() { return { loading: true, - queryParams: {}, + queryParams: {status:'CONFIRMED'}, workorderList: [], lineChartData: lineChartData.newVisitis } @@ -122,7 +122,7 @@ export default { getList() { this.loading = true; listWorkorder(this.queryParams).then(response => { - this.workorderList = response.data; + this.workorderList = response.rows; this.loading = false; }); },