fix: 重发验证码&图片路径

This commit is contained in:
zhangyahui
2025-10-30 13:54:11 +08:00
parent aad931182e
commit ca30dc0941
5 changed files with 19 additions and 12 deletions

View File

@@ -54,6 +54,9 @@ import { ref, watch } from 'vue'
import { useRouter } from 'vue-router'
import Video from './components/Video.vue'
import { useUserInfoStore } from '@/stores'
import male from '@/assets/images/male.png'
import female from '@/assets/images/female.png'
const router = useRouter()
const userInfoStore = useUserInfoStore()
@@ -64,28 +67,28 @@ const stylists = ref<any[]>([
value: 'mini',
name: 'Vera Lo',
description: 'Contemporary, Classic, Simple Silhouettes, Statement Pieces',
image: '/src/assets/images/female.png'
image: female
},
{
id: 2,
value: 'crystal',
name: 'Sarah Chen',
description: 'Modern, Edgy, Bold Colors, Street Style',
image: '/src/assets/images/male.png'
image: male
},
{
id: 3,
value: 'mini',
name: 'Emma Wilson',
description: 'Elegant, Feminine, Vintage Inspired, Soft Tones',
image: '/src/assets/images/female.png'
image: female
},
{
id: 4,
value: 'crystal',
name: 'Alex Johnson',
description: 'Minimalist, Professional, Neutral Palette, Clean Lines',
image: '/src/assets/images/male.png'
image: male
}
])
const currentChoosed = ref(1)