修改展示字段

This commit is contained in:
Caojr
2025-11-24 14:53:40 +08:00
parent 44d2b2bedf
commit 80727675b0

View File

@@ -151,26 +151,6 @@
</draggable>
</template>
<template #bodyCell="{ record, column }">
<template v-if="column.key === 'projectCompletedNum'">
<div
style="color: #02a7f0; cursor: pointer"
@click="openModal(record.studentId, 1)"
>
{{
!record.projectCompletedNum ? "0" : record.projectCompletedNum
}}
</div>
</template>
<template v-if="column.key === 'routerCompletedNum'">
<div
style="color: #02a7f0; cursor: pointer"
@click="openModal(record.studentId, 2)"
>
{{
!record.routerCompletedNum ? "0" : record.routerCompletedNum
}}
</div>
</template>
<template v-if="column.key === 'offCourseCompletedNum'">
<div
style="color: #02a7f0; cursor: pointer"
@@ -201,6 +181,26 @@
{{ !record.examCompletedNum ? "0" : record.examCompletedNum }}
</div>
</template>
<template v-if="column.key === 'projectCompletedNum'">
<div
style="color: #02a7f0; cursor: pointer"
@click="openModal(record.studentId, 1)"
>
{{
!record.projectCompletedNum ? "0" : record.projectCompletedNum
}}
</div>
</template>
<template v-if="column.key === 'routerCompletedNum'">
<div
style="color: #02a7f0; cursor: pointer"
@click="openModal(record.studentId, 2)"
>
{{
!record.routerCompletedNum ? "0" : record.routerCompletedNum
}}
</div>
</template>
<template v-if="column.key === 'caseViewsNum'">
<div
style="color: #02a7f0; cursor: pointer"