Merge branch 'master-20251023-tag' into test1024

This commit is contained in:
670788339
2025-11-03 09:47:42 +08:00

View File

@@ -114,8 +114,11 @@
<div class="tableBox">
<div class="pa">
<div class="pagination-info" style="margin-bottom: 10px; text-align: center; color: #666;">
{{ tableDataTotal }} 条记录
</div>
<a-pagination
v-if="tableDataTotal > 10"
v-if="tableDataTotal > 0"
:showSizeChanger="false"
:showQuickJumper="true"
:hideOnSinglePage="true"
@@ -152,14 +155,14 @@
>
<template #bodyCell="{ record, column }">
<!-- 关联课程ID -->
<template v-if="column.key === 'courseId'">
<!-- <template v-if="column.key === 'courseId'">
<div class="course-id-cell" :title="record.courseId">
{{ record.courseId }}
</div>
</template>
</template>-->
<!-- 关联课程名称 -->
<template v-else-if="column.key === 'courseName'">
<template v-if="column.key === 'courseName'">
<a-tooltip placement="topLeft" :title="record.courseName">
<div class="course-name-cell ellipsis">
{{ record.courseName }}
@@ -204,8 +207,11 @@
</a-table>
<div class="course-pagination">
<div class="pagination-info" style="margin-bottom: 10px; text-align: center; color: #666;">
{{ courseTableTotal }} 条记录
</div>
<a-pagination
v-if="courseTableTotal > 5"
v-if="courseTableTotal > 0"
:showSizeChanger="false"
:showQuickJumper="true"
:hideOnSinglePage="true"