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