From 7cc0e05f3c549a516449135cf674d78a6a94ee93 Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期日, 28 四月 2024 15:55:45 +0800
Subject: [PATCH] style:修改数据中心适配
---
src/views/system/result/detail/index1.vue | 10 ++--------
1 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/src/views/system/result/detail/index1.vue b/src/views/system/result/detail/index1.vue
index 04d8a5f..72c3c32 100644
--- a/src/views/system/result/detail/index1.vue
+++ b/src/views/system/result/detail/index1.vue
@@ -147,14 +147,8 @@
getList() {
this.tableLoading = true;
detailScore(this.queryParams).then(response => {
- console.log(response);
- if (response.rows) {
- this.tableData = response.rows;
- this.total = response.total;
- } else {
- this.tableData = [];
- this.total = 0;
- }
+ this.tableData = response.rows;
+ this.total = response.total;
this.tableLoading = false;
});
},
--
Gitblit v1.8.0