Files
tp/begushiybashkir/bbvue/src/views/Reviews.vue
T

85 lines
2.1 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="page">
<h1> Отзывы</h1>
<p>Что говорят наши участники</p>
<div class="reviews-list">
<div v-for="review in reviews" :key="review.id" class="review-card">
<div class="review-header">
<span class="review-author">{{ review.author }}</span>
<span class="review-rating"> {{ review.rating }}/5</span>
</div>
<p class="review-text">{{ review.text }}</p>
<p class="review-date">{{ review.date }}</p>
</div>
</div>
<div class="review-actions">
<button class="btn" @click="$router.push('/login')"> Оставить отзыв</button>
<button class="btn btn-secondary">📊 Все отзывы</button>
</div>
</div>
</template>
<script>
export default {
// eslint-disable-next-line vue/multi-word-component-names
name: 'Reviews',
data() {
return {
reviews: [
{ id: 1, author: 'Анна', rating: 5, text: 'Отличный клуб! За 3 месяца улучшила результат на 10км на 8 минут!', date: '15.01.2025' },
{ id: 2, author: 'Михаил', rating: 5, text: 'Профессиональный тренер и дружеская атмосфера. Рекомендую!', date: '12.01.2025' },
{ id: 3, author: 'Елена', rating: 4, text: 'Очень нравятся групповые тренировки, всегда есть с кем побегать', date: '10.01.2025' }
]
}
}
}
</script>
<style scoped>
.reviews-list {
max-width: 600px;
margin: 2rem auto;
}
.review-card {
background: white;
padding: 1.5rem;
margin: 1rem 0;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: left;
}
.review-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.review-author {
font-weight: bold;
color: #2e8b57;
}
.review-rating {
color: #ffd700;
font-weight: bold;
}
.review-text {
margin-bottom: 1rem;
line-height: 1.5;
}
.review-date {
color: #666;
font-size: 0.9rem;
}
.review-actions {
margin-top: 2rem;
}
</style>