Finish GenresAdminPanel

This commit is contained in:
2024-11-06 17:55:18 +01:00
parent 80dd2a0ae8
commit 9ec8e382cf
17 changed files with 181 additions and 21 deletions

View File

@@ -29,7 +29,7 @@ defineProps({
height="150"
>
<v-img
:src="'http://localhost:3000/static/' + image"
:src="image"
aspect-ratio="1"
max-height="200"
cover

View File

@@ -34,7 +34,7 @@ defineProps({
<card-view-horizontal
v-if="!loading"
:title="band.name"
:image="'http://localhost:3000/static/' + band.logo"
:image="band.logo"
@click="router.push('/bands/details/' + band.name.replaceAll(' ', '-').toLowerCase())"
>
<template #content>

View File

@@ -22,7 +22,7 @@ defineProps({
<template>
<v-img
:src="!loading ? 'http://localhost:3000/static/' + image : ''"
:src="!loading ? image : ''"
height="600"
gradient="to top, rgba(0, 0, 0, .9), rgba(255, 255, 255, 0.1)"
cover
@@ -40,7 +40,7 @@ defineProps({
<v-card>
<v-img
v-if="logo"
:src="'http://localhost:3000/static/' + logo"
:src="logo"
width="200"
aspect-ratio="1"
cover

View File

@@ -41,7 +41,7 @@ defineProps({
<template>
<card-with-left-image
:image="'http://localhost:3000/static/' + image"
:image="image"
:link="false"
color-header="primary"
:title="band.name + ' - ' + concert.name"