Compare commits

..

No commits in common. "c5f707efb9170cec1208a25dd3858bbfade3723c" and "27a827662e533e43318b1b19aa04c85dd3e8182e" have entirely different histories.

2 changed files with 3 additions and 8 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=20");
return Vue.axios.get("/creator-admin/audio-content/series?page=" + (page - 1) + "&size=10");
}
async function createSeries(formData) {

View File

@ -35,7 +35,7 @@
<v-col
v-for="(item, i) in series_list"
:key="i"
cols="2"
cols="3"
>
<v-card>
<v-card-title>
@ -696,15 +696,10 @@ 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;
@ -742,6 +737,6 @@ export default {
}
.cover-image {
aspect-ratio: 1/1.3;
aspect-ratio: 1/1.4;
}
</style>