Files
lanecarford_front/src/views/stylist/index.vue

335 lines
7.9 KiB
Vue
Raw Normal View History

<template>
<div class="stylist-page">
<!-- 主要内容区域 -->
<div class="content">
<!-- 标题 -->
<div class="header">
<div class="title">CHOOSE YOUR STYLIST</div>
</div>
<!-- 轮播容器 -->
<div class="carousel-container">
<!-- 左箭头 -->
<div class="nav-arrow left" @click="handleChangeSwiper('prev')">
<van-icon name="arrow-left" color="#fff" size="40" />
</div>
2025-10-24 17:37:15 +08:00
<van-swipe touchable ref="swiperRef" @change="handleChangeCurrent">
<van-swipe-item v-for="item in stylists" :key="item.id">
2025-10-13 10:13:54 +08:00
<div class="swiper-container" @click="handleClickStylist(item)">
<img :src="item.image" />
<div class="text-container">
<div class="name">{{ item.name }}</div>
<div class="description">
{{ item.description }}
</div>
</div>
</div>
</van-swipe-item>
</van-swipe>
<div class="nav-arrow right" @click="handleChangeSwiper('next')">
<van-icon name="arrow" color="#fff" size="40" />
<!-- <svg width="15" height="26" viewBox="0 0 24 24" fill="none">
<path
d="M9 18L15 12L9 6"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg> -->
</div>
</div>
</div>
<!-- Continue按钮 -->
<div class="continue-button" @click="handleContinue">Continue</div>
2025-10-13 10:13:54 +08:00
<van-dialog
class="video-dialog"
:show-confirm-button="false"
:show-cancel-button="false"
v-model:show="showVideo"
title=""
>
<div class="close-btn" @click="showVideo = false">
<van-icon name="cross" class="close-icon" />
</div>
<Video ref="videoRef" />
</van-dialog>
</div>
</template>
<script setup lang="ts">
2025-10-13 10:13:54 +08:00
import { ref, watch } from 'vue'
import { useRouter } from 'vue-router'
2025-10-13 10:13:54 +08:00
import Video from './components/Video.vue'
2025-10-24 17:37:15 +08:00
import { useUserInfoStore } from '@/stores'
const router = useRouter()
2025-10-24 17:37:15 +08:00
const userInfoStore = useUserInfoStore()
// stylist数据
2025-10-13 15:28:53 +08:00
const stylists = ref<any[]>([
{
id: 1,
2025-10-28 11:33:20 +08:00
value: 'mini',
name: 'Vera Lo',
description: 'Contemporary, Classic, Simple Silhouettes, Statement Pieces',
image: '/src/assets/images/female.png'
},
{
id: 2,
2025-10-28 11:33:20 +08:00
value: 'crystal',
name: 'Sarah Chen',
description: 'Modern, Edgy, Bold Colors, Street Style',
image: '/src/assets/images/male.png'
},
{
id: 3,
2025-10-28 11:33:20 +08:00
value: 'mini',
name: 'Emma Wilson',
description: 'Elegant, Feminine, Vintage Inspired, Soft Tones',
image: '/src/assets/images/female.png'
},
{
id: 4,
2025-10-28 11:33:20 +08:00
value: 'crystal',
name: 'Alex Johnson',
description: 'Minimalist, Professional, Neutral Palette, Clean Lines',
image: '/src/assets/images/male.png'
}
])
2025-10-28 11:33:20 +08:00
const currentChoosed = ref(1)
2025-10-13 10:13:54 +08:00
const swiperRef = ref<any>(null)
const showVideo = ref<boolean>(false)
const videoRef = ref<any>(null)
2025-10-28 11:33:20 +08:00
const handleChangeCurrent = (index: number) => {
2025-10-24 17:37:15 +08:00
currentChoosed.value = stylists.value[index].id
}
const handleChangeSwiper = (type: 'next' | 'prev') => {
if (type === 'next') {
swiperRef.value.next()
} else {
swiperRef.value.prev()
}
}
2025-10-13 10:13:54 +08:00
const handleClickStylist = (item: any) => {
console.log(item)
showVideo.value = true
}
const handleContinue = () => {
2025-10-24 17:37:15 +08:00
const generateParams = userInfoStore.getGenerateParams()
2025-10-28 11:33:20 +08:00
generateParams.stylist =
stylists.value.find((item) => item.id === currentChoosed.value)?.value || ''
2025-10-24 17:37:15 +08:00
userInfoStore.setGenerateParams(generateParams)
router.push('/stylist/sex')
}
2025-10-13 10:13:54 +08:00
// 监听showVideo变化关闭时暂停视频
watch(showVideo, (newValue) => {
if (!newValue && videoRef.value) {
videoRef.value.pause()
videoRef.value.reset()
}
})
</script>
<style scoped lang="less">
.stylist-page {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
color: #fff;
background: url('@/assets/images/stylist_bg.png') no-repeat center center;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.content {
position: relative;
z-index: 2;
flex: 1;
display: flex;
flex-direction: column;
padding: 2rem;
padding-top: 6rem;
}
.header {
text-align: center;
margin-bottom: 4rem;
.title {
font-size: 15rem;
font-weight: 400;
color: white;
2025-10-13 10:13:54 +08:00
font-family: 'boskaRegular';
}
}
.carousel-container {
position: relative;
display: flex;
2025-10-13 10:13:54 +08:00
// align-items: center;
// justify-content: center;
// flex: 1;
margin: 2rem 0;
}
.nav-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 8.6rem;
height: 8.4rem;
background: rgba(255, 255, 255, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 3;
box-shadow: 0 2rem 2.5rem rgba(0, 0, 0, 0.25), 0 0 6rem rgba(0, 0, 0, 0.25);
border: 0.1rem solid rgba(255, 255, 255, 0.2);
filter: drop-shadow(2px 4px 6.6px rgba(0, 0, 0, 0.25));
&.left {
left: 1rem;
}
&.right {
right: 1rem;
}
}
.van-swipe {
.van-swipe-item {
display: flex;
justify-content: center;
.swiper-container {
width: 66rem;
height: 100rem;
border: 2px solid #fff;
border-radius: 12px;
display: flex;
flex-direction: column;
align-items: center;
padding: 4.25rem 0 2.65rem;
background: radial-gradient(
100% 100% at 0% 0%,
rgba(115, 115, 115, 0.4) 0%,
rgba(115, 115, 115, 0.2) 50%,
rgba(0, 0, 0, 0) 100%
);
backdrop-filter: blur(35px);
overflow: hidden;
position: relative;
img {
width: 59rem;
height: 63rem;
object-fit: cover;
}
.text-container {
padding: 0 5.25rem;
width: 100%;
font-weight: 400;
.name {
line-height: 6rem;
font-size: 4.8rem;
margin: 2.6rem 0 2.2rem;
}
.description {
// line-height: 3rem;
font-size: 2.8rem;
// width: 100%;
}
}
}
}
:deep(.van-swipe__indicators) {
bottom: 2.65rem;
background: #fff;
border-radius: 25px;
padding: 1rem 2rem;
.van-swipe__indicator {
width: 1rem;
height: 1rem;
background-color: #d9d9d9;
opacity: 1;
}
.van-swipe__indicator--active {
background-color: #000;
opacity: 1;
width: 3rem;
border-radius: 3px;
}
}
}
.continue-button {
position: absolute;
2025-10-13 10:13:54 +08:00
bottom: 6.4rem;
right: 7.6rem;
padding: 1.2rem 2.4rem;
2025-10-13 10:13:54 +08:00
border: 1px solid #fff;
border-radius: 1rem;
color: white;
2025-10-13 10:13:54 +08:00
font-size: 4rem;
font-weight: 500;
cursor: pointer;
z-index: 3;
2025-10-13 10:13:54 +08:00
font-family: 'satoshiRegular';
}
:deep(.video-dialog) {
width: 80%;
background: rgba(0, 0, 0, 0.3);
2025-10-13 10:13:54 +08:00
.close-btn {
width: 8.6rem;
height: 8.4rem;
position: absolute;
right: 0;
top: 0;
z-index: 3;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
border-radius: 50%;
cursor: pointer;
backdrop-filter: blur(1rem);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.4), inset 0 0.2rem 0.4rem rgba(255, 255, 255, 0.1),
2025-10-13 10:13:54 +08:00
inset 0 -0.2rem 0.4rem rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
2025-10-13 10:13:54 +08:00
&:hover {
transform: translateY(-0.2rem);
box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.5),
inset 0 0.2rem 0.4rem rgba(255, 255, 255, 0.15), inset 0 -0.2rem 0.4rem rgba(0, 0, 0, 0.4);
2025-10-13 10:13:54 +08:00
}
2025-10-13 10:13:54 +08:00
&:active {
transform: translateY(0.1rem);
box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.3), inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
2025-10-13 10:13:54 +08:00
}
2025-10-13 10:13:54 +08:00
.close-icon {
color: white;
font-size: 2.4rem;
text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
}
}
}
</style>