|
|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
<a-card>
|
|
|
- <a-list item-layout="vertical" size="large" :pagination="pagination" :data-source="listData">
|
|
|
+ <a-list item-layout="vertical" size="large" :pagination="pagination" :data-source="listData" class="listBox">
|
|
|
<template #renderItem="{ item }">
|
|
|
- <a-list-item>
|
|
|
- <a-list-item-meta :description="item.chapterName">
|
|
|
+ <a-list-item style="padding:5px 24px;">
|
|
|
+ <a-list-item-meta :description="item.chapterName" style="margin-bottom: 5px;">
|
|
|
<template #title>
|
|
|
<div @click="jumpDetail(item)" style="cursor: pointer">{{ item.courseName }}</div>
|
|
|
</template>
|
|
|
@@ -55,4 +55,7 @@
|
|
|
.index-message-list {
|
|
|
overflow: auto;
|
|
|
}
|
|
|
+ :deep(.listBox .ant-list-item-meta-title ){
|
|
|
+ margin-bottom: 5px!important;
|
|
|
+ }
|
|
|
</style>
|