2026-02-06 17:45:44 +08:00
|
|
|
|
<script setup lang="ts">
|
2026-02-11 17:27:08 +08:00
|
|
|
|
import { computed, onBeforeUnmount, ref } from 'vue'
|
|
|
|
|
|
import { useRoute } from 'vue-router'
|
2026-02-06 17:45:44 +08:00
|
|
|
|
import CompetitionLayout from '@/components/custom/user/CompetitionLayout.vue'
|
|
|
|
|
|
import { useRouterPush } from '@/hooks/common/router'
|
2026-02-11 17:27:08 +08:00
|
|
|
|
import { fetchCheckNextStep, fetchGetCurrentQuestion } from '@/service/api/game'
|
|
|
|
|
|
import { useCompetitionStore } from '@/store/modules/competition'
|
|
|
|
|
|
|
|
|
|
|
|
const store = useCompetitionStore()
|
2026-02-06 17:45:44 +08:00
|
|
|
|
|
|
|
|
|
|
const { routerPushByKey } = useRouterPush()
|
2026-02-11 17:27:08 +08:00
|
|
|
|
const route = useRoute()
|
|
|
|
|
|
const activityId = computed(() => route.query?.activityId as string)
|
|
|
|
|
|
const groupsId = computed(() => route.query?.groupsId as string)
|
|
|
|
|
|
const teamId = computed(() => route.query?.teamId as string)
|
|
|
|
|
|
const teamIds = computed(() => route.query?.teamIds as string)
|
|
|
|
|
|
const currentQuestionMainInfo = computed(() => store.currentQuestionMainInfo)
|
|
|
|
|
|
|
|
|
|
|
|
const TeamGroup_QuestionID = computed(() => currentQuestionMainInfo.value?.TeamGroup_QuestionID || 0)
|
|
|
|
|
|
|
2026-02-06 17:45:44 +08:00
|
|
|
|
const zoomedImage = ref<string | null>(null)
|
2026-02-11 17:27:08 +08:00
|
|
|
|
const isCompleted = ref(false)
|
|
|
|
|
|
const showNextBtn = ref(false)
|
2026-02-06 17:45:44 +08:00
|
|
|
|
|
|
|
|
|
|
// Mock team data
|
|
|
|
|
|
const teams = ref([
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 1,
|
|
|
|
|
|
name: '第一队',
|
|
|
|
|
|
writtenCount: 16,
|
|
|
|
|
|
correctCount: 13,
|
|
|
|
|
|
score: 13,
|
|
|
|
|
|
manualScore: null as number | null,
|
|
|
|
|
|
image: 'https://via.placeholder.com/300x400?text=Team+1+Answer',
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 2,
|
|
|
|
|
|
name: '第二队',
|
|
|
|
|
|
writtenCount: 15,
|
|
|
|
|
|
correctCount: 12,
|
|
|
|
|
|
score: 12,
|
|
|
|
|
|
manualScore: null as number | null,
|
|
|
|
|
|
image: 'https://via.placeholder.com/300x400?text=Team+2+Answer',
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 3,
|
|
|
|
|
|
name: '第三队',
|
|
|
|
|
|
writtenCount: 18,
|
|
|
|
|
|
correctCount: 15,
|
|
|
|
|
|
score: 15,
|
|
|
|
|
|
manualScore: null as number | null,
|
|
|
|
|
|
image: 'https://via.placeholder.com/300x400?text=Team+3+Answer',
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 4,
|
|
|
|
|
|
name: '第四队',
|
|
|
|
|
|
writtenCount: 14,
|
|
|
|
|
|
correctCount: 10,
|
|
|
|
|
|
score: 10,
|
|
|
|
|
|
manualScore: null as number | null,
|
|
|
|
|
|
image: 'https://via.placeholder.com/300x400?text=Team+4+Answer',
|
|
|
|
|
|
},
|
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
function handleZoom(img: string) {
|
|
|
|
|
|
zoomedImage.value = img
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleBack() {
|
2026-02-11 17:27:08 +08:00
|
|
|
|
routerPushByKey('user_game', {
|
|
|
|
|
|
query: {
|
|
|
|
|
|
activityId: activityId.value,
|
|
|
|
|
|
groupsId: groupsId.value,
|
|
|
|
|
|
teamId: teamId.value,
|
|
|
|
|
|
teamIds: teamIds.value,
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
2026-02-06 17:45:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleNext() {
|
2026-02-11 17:27:08 +08:00
|
|
|
|
if (isCompleted.value) {
|
|
|
|
|
|
routerPushByKey('user_groups', {
|
|
|
|
|
|
query: {
|
|
|
|
|
|
activityId: activityId.value,
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
routerPushByKey('user_draw', {
|
|
|
|
|
|
query: {
|
|
|
|
|
|
activityId: activityId.value,
|
|
|
|
|
|
groupsId: groupsId.value,
|
|
|
|
|
|
teamId: teamId.value,
|
|
|
|
|
|
teamIds: teamIds.value,
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
// 清空当前题目信息
|
|
|
|
|
|
store.initData()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 获取题目详情
|
|
|
|
|
|
* 检测是否还有题可以抽取,如果data为0,则提示没有题可抽取
|
|
|
|
|
|
*/
|
|
|
|
|
|
async function initQuestions() {
|
|
|
|
|
|
if (!activityId.value)
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const { data: outlineData, error } = await fetchGetCurrentQuestion({
|
|
|
|
|
|
ActivityID: Number(activityId.value),
|
|
|
|
|
|
GroupID: Number(groupsId.value),
|
|
|
|
|
|
RoundType: 0,
|
|
|
|
|
|
})
|
|
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
|
|
console.log(outlineData, 'outlineData')
|
|
|
|
|
|
if (error) {
|
|
|
|
|
|
window?.$message?.error(error.message)
|
|
|
|
|
|
}
|
|
|
|
|
|
isCompleted.value = outlineData?.data?.IsCompleted || false
|
|
|
|
|
|
}
|
|
|
|
|
|
catch (error) {
|
|
|
|
|
|
window.$message?.error('获取题目失败,请重试')
|
|
|
|
|
|
console.error(error)
|
|
|
|
|
|
}
|
2026-02-06 17:45:44 +08:00
|
|
|
|
}
|
2026-02-11 17:27:08 +08:00
|
|
|
|
|
|
|
|
|
|
const timer = ref<ReturnType<typeof setInterval> | undefined>(undefined)
|
|
|
|
|
|
|
|
|
|
|
|
/** 定时刷新 检查评委是否已经完成打分,是否可以下一步 fetchCheckNextStep */
|
|
|
|
|
|
async function checkNextStep() {
|
|
|
|
|
|
if (!activityId.value || !groupsId.value)
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const { data: nextStepData, error } = await fetchCheckNextStep(TeamGroup_QuestionID.value || 0)
|
|
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
|
|
console.log(nextStepData, 'nextStepData')
|
|
|
|
|
|
if (error) {
|
|
|
|
|
|
window?.$message?.error(error.message)
|
|
|
|
|
|
}
|
|
|
|
|
|
const isUse = nextStepData?.data?.IsUse || false
|
|
|
|
|
|
showNextBtn.value = isUse
|
|
|
|
|
|
if (isUse) {
|
|
|
|
|
|
await initQuestions()
|
|
|
|
|
|
clearInterval(timer.value)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
catch (error) {
|
|
|
|
|
|
window.$message?.error('检查是否可以下一步失败,请重试')
|
|
|
|
|
|
console.error(error)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 定时刷新 检查是否可以下一步
|
|
|
|
|
|
timer.value = setInterval(checkNextStep, 2000)
|
|
|
|
|
|
|
|
|
|
|
|
/** 销毁 定时刷新 检查是否可以下一步 */
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
|
|
clearInterval(timer.value)
|
|
|
|
|
|
})
|
2026-02-06 17:45:44 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<CompetitionLayout
|
2026-02-11 17:27:08 +08:00
|
|
|
|
:show-title="true" :show-back="false" :show-next="showNextBtn" title="答题图解" action-position="top"
|
|
|
|
|
|
back-btn-text="返回" :next-btn-text="isCompleted ? '该组已完成,回到选组' : '下一题'" btn-theme="light" @back="handleBack"
|
2026-02-06 17:45:44 +08:00
|
|
|
|
@next="handleNext"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="relative h-full w-full flex flex-col items-center px-12 pt-10 font-sans">
|
|
|
|
|
|
<!-- Content -->
|
|
|
|
|
|
<div class="w-full flex flex-col flex-1 overflow-hidden">
|
|
|
|
|
|
<div class="mb-2 text-xl text-red-600 font-bold">
|
|
|
|
|
|
备注:由AI模型评判
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-10 08:45:26 +08:00
|
|
|
|
<div v-if="teams && teams.length > 0" class="grid grid-cols-4 h-full gap-6 pb-8">
|
2026-02-06 17:45:44 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-for="team in teams" :key="team.id"
|
|
|
|
|
|
class="flex flex-col border-2 border-gray-200 rounded-xl bg-white/90 p-4 shadow-sm"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="mb-2 text-xl text-gray-800 font-bold">
|
|
|
|
|
|
{{ team.name }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Answer Image Area -->
|
|
|
|
|
|
<div
|
|
|
|
|
|
class="relative mb-4 flex-1 cursor-zoom-in overflow-hidden border border-gray-300 rounded bg-gray-50"
|
|
|
|
|
|
@click="handleZoom(team.image)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<!-- Grid Background Simulation -->
|
|
|
|
|
|
<div class="pointer-events-none absolute inset-0 grid grid-cols-8 gap-px bg-gray-200 opacity-20">
|
|
|
|
|
|
<div v-for="n in 64" :key="n" class="bg-white" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- Simulated Handwriting/Content -->
|
|
|
|
|
|
<div class="absolute inset-0 flex items-center justify-center text-gray-400">
|
|
|
|
|
|
(点击放大查看详情)
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Stats & Score -->
|
|
|
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
|
|
<div class="text-sm text-gray-700 font-medium">
|
|
|
|
|
|
写了数量{{ team.writtenCount }},正确{{ team.correctCount }}个,积分{{ team.score }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
|
|
<span class="text-red-500 font-bold">评委当场评</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="relative">
|
|
|
|
|
|
<input
|
2026-02-11 17:27:08 +08:00
|
|
|
|
v-model="team.manualScore" type="number"
|
2026-02-06 17:45:44 +08:00
|
|
|
|
class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:border-blue-500 focus:outline-none"
|
|
|
|
|
|
placeholder="留个输入框,修改正确积分"
|
|
|
|
|
|
>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Zoom Modal -->
|
|
|
|
|
|
<div
|
2026-02-11 17:27:08 +08:00
|
|
|
|
v-if="zoomedImage" class="fixed inset-0 z-50 flex items-center justify-center bg-black/80 backdrop-blur-sm"
|
2026-02-06 17:45:44 +08:00
|
|
|
|
@click="zoomedImage = null"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="relative max-h-[90vh] max-w-[90vw] p-4">
|
|
|
|
|
|
<img :src="zoomedImage" class="max-h-full max-w-full rounded bg-white shadow-2xl" alt="Zoomed Answer">
|
|
|
|
|
|
<div class="absolute bottom-4 left-1/2 text-sm text-white/80 -translate-x-1/2">
|
|
|
|
|
|
点击任意处关闭
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</CompetitionLayout>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
/* Custom Scrollbar for content if needed */
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
|
width: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
|
background: #cbd5e1;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|