From 96981fc32f743e2d8cdaf1d963127877f703df8e Mon Sep 17 00:00:00 2001 From: lz-ui Date: Wed, 29 Oct 2025 10:20:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B7=BB=E5=8A=A0=E4=B8=BB=E9=98=9F?= =?UTF-8?q?=E5=AE=A2=E9=98=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/operation/report/index.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/views/operation/report/index.vue b/src/views/operation/report/index.vue index 6bf3449..b7c44b8 100644 --- a/src/views/operation/report/index.vue +++ b/src/views/operation/report/index.vue @@ -279,8 +279,6 @@ function tableColumnActive(row, modelType, key) { return ''; } - console.log(reportData) - // 根据key值获取对应字段的值并判断是否应该添加active类 const value = reportData[key]; if (value && value === '1') { @@ -365,6 +363,16 @@ function reportResultsModelType(arr){ const res = {} arr.forEach(item => { res[item.modelType] = [ + { + lable: '主队', + value: item.homeTeam, + key: 'result' + }, + { + lable: '客队', + value: item.awayTeam, + key: 'result' + }, { lable: '胜平负', value: item.result,