From 7d99c78c767f5ec13f9bbab6e1251825e92ea009 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期一, 29 四月 2024 17:53:16 +0800
Subject: [PATCH] 合同考核结果定时任务、详情、查询、导出
---
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