Merge pull request '시리즈 관리 - 시리즈 크기 한줄에 6개가 들어가도록 수정' (#25) from test into main
Reviewed-on: #25
This commit is contained in:
commit
c5f707efb9
|
@ -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) {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue