标签页样式调整

This commit is contained in:
670788339
2025-11-03 09:46:04 +08:00
parent 2dd62b0422
commit 548b966cc6

View File

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