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

Merged
klaus merged 1 commits from test into main 2024-08-14 08:32:30 +00:00
2 changed files with 8 additions and 3 deletions

View File

@ -5,7 +5,7 @@ async function getGenreList() {
}
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) {

View File

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