시리즈 관리 - 시리즈 크기 한줄에 6개가 들어가도록 수정

This commit is contained in:
Yu Sung 2024-08-14 17:31:02 +09:00
parent 3a0ee08ab0
commit baa6253b71
2 changed files with 8 additions and 3 deletions

View File

@ -5,7 +5,7 @@ async function getGenreList() {
} }
async function getSeriesList(page) { async function getSeriesList(page) {
return Vue.axios.get("/creator-admin/audio-content/series?page=" + (page - 1) + "&size=10"); return Vue.axios.get("/creator-admin/audio-content/series?page=" + (page - 1) + "&size=20");
} }
async function createSeries(formData) { async function createSeries(formData) {

View File

@ -35,7 +35,7 @@
<v-col <v-col
v-for="(item, i) in series_list" v-for="(item, i) in series_list"
:key="i" :key="i"
cols="3" cols="2"
> >
<v-card> <v-card>
<v-card-title> <v-card-title>
@ -696,10 +696,15 @@ export default {
<style scoped> <style scoped>
.scroll_container { .scroll_container {
margin-top: 30px;
height: 100vh; height: 100vh;
overflow-y: auto; overflow-y: auto;
} }
.scroll_container > .row {
padding-bottom: 280px;
}
.image-select label { .image-select label {
display: inline-block; display: inline-block;
padding: 10px 20px; padding: 10px 20px;
@ -737,6 +742,6 @@ export default {
} }
.cover-image { .cover-image {
aspect-ratio: 1/1.4; aspect-ratio: 1/1.3;
} }
</style> </style>