mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-08 18:36:46 +08:00
Merge branch 'master-20251023-tag' into test1024
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user