mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 20:06:47 +08:00
标签页样式调整
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user