From 66e9a60548f9324359cd8bd7506d689c2bfd8566 Mon Sep 17 00:00:00 2001 From: lz-ui Date: Tue, 21 Oct 2025 09:58:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/operation/report/index.vue | 31 +++++++++++----------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/src/views/operation/report/index.vue b/src/views/operation/report/index.vue index 3cd90a7..7abdeff 100644 --- a/src/views/operation/report/index.vue +++ b/src/views/operation/report/index.vue @@ -87,7 +87,11 @@ 查看 @@ -97,9 +101,10 @@ {{ scope.row.reportSatus === 1 ? scope.row.reportDetail.reportFlag : '' }} --> - + @@ -147,9 +152,10 @@ const showSearch = ref(true) const total = ref(0) const dateRange = ref([]) const editHadRef = ref(null) +const activeName = ref('a') const dialogOpen = ref(false) -const dialogTitle = ref('编辑') +const dialogTitle = ref('标记') const dialogForm = ref({}) /** 数据范围选项*/ @@ -194,9 +200,10 @@ function cancel() { dialogForm.value = {} } -function openDialog(row) { +function openDialog(row, type='') { dialogForm.value = row dialogOpen.value = true + dialogTitle.value = '标记' + type } /** 获取联赛类型 */ @@ -211,20 +218,6 @@ function handleJumpLink(row) { jumpLink(row.matchId, 1) } -/** 查看详情 */ -function handleView(row) { - if (row.reportSatus != 1) { - return - } - // window.open(window.location.origin + '/#/tc/eventAnalysisReport/detail?id=' + row.matchId) - router.push({ - path: '/tc/eventAnalysisReport/detail', - query: { - id: row.matchId - } - }) -} - /** 查询列表 */ function getList() { loading.value = true