合作页面的内容

This commit is contained in:
李琦
2026-01-16 09:08:07 +08:00
parent e99560ba87
commit 7ed2f55282
13 changed files with 1327 additions and 106 deletions

View File

@@ -0,0 +1,83 @@
<template>
<div class="relative group/input" ref="containerRef">
<input
:name="name"
type="text"
class="peer w-full bg-transparent border-b border-white/20 py-2 text-white font-serif text-lg focus:border-art-accent outline-none transition-colors placeholder-transparent"
:placeholder="placeholder"
:value="modelValue"
@input="handleInput"
@focus="showDropdown = true"
@blur="handleBlur"
autocomplete="off"
>
<label
class="absolute left-0 top-2 text-white/30 text-xs font-mono transition-all peer-focus:-top-4 peer-focus:text-art-accent peer-autofill:-top-4 peer-autofill:text-art-accent pointer-events-none"
:class="modelValue ? '-top-4 text-white/50' : ''"
>{{ label }}</label>
<!-- Autocomplete Dropdown -->
<div v-if="showDropdown && suggestions.length > 0" class="absolute z-50 left-0 right-0 top-full mt-1 bg-[#1a1a1a] border border-white/10 shadow-lg max-h-48 overflow-y-auto rounded-b-md">
<div
v-for="(suggestion, index) in suggestions"
:key="index"
class="px-4 py-2 text-sm text-white/70 hover:bg-art-accent hover:text-black cursor-pointer transition-colors font-mono"
@mousedown.prevent="selectSuggestion(suggestion)"
>
{{ suggestion }}
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, computed, onMounted } from 'vue'
import { fetchEmailSuffixes, type EmailSuffix } from '../../services/api'
const props = defineProps<{
name: string
label: string
placeholder?: string
modelValue: string
}>()
const emit = defineEmits(['update:modelValue'])
const showDropdown = ref(false)
const emailSuffixes = ref<string[]>([])
const containerRef = ref<HTMLElement | null>(null)
// Load suffixes from API
onMounted(async () => {
try {
const suffixes = await fetchEmailSuffixes()
emailSuffixes.value = suffixes.map(s => s.suffix)
} catch (e) {
// Fallback defaults if API fails
emailSuffixes.value = ['@gmail.com', '@163.com', '@qq.com', '@outlook.com']
}
})
const handleInput = (e: Event) => {
const val = (e.target as HTMLInputElement).value
emit('update:modelValue', val)
showDropdown.value = true
}
const handleBlur = () => {
// Delay hiding to allow click event on dropdown to fire
setTimeout(() => {
showDropdown.value = false
}, 200)
}
const suggestions = computed(() => {
if (!props.modelValue || props.modelValue.includes('@')) return []
return emailSuffixes.value.map(suffix => `${props.modelValue}${suffix}`)
})
const selectSuggestion = (val: string) => {
emit('update:modelValue', val)
showDropdown.value = false
}
</script>

View File

@@ -0,0 +1,44 @@
<template>
<div class="flex flex-wrap gap-3">
<label v-for="option in options" :key="option.value" class="cursor-pointer group">
<input
type="radio"
:name="name"
:value="option.value"
:checked="modelValue === option.value"
@change="$emit('update:modelValue', option.value)"
class="peer hidden"
>
<span class="px-4 py-2 border border-white/10 rounded-none text-xs font-mono text-white/50 hover:border-art-accent hover:text-white transition-all peer-checked:bg-art-accent peer-checked:text-black peer-checked:border-art-accent flex items-center gap-2">
<i v-if="option.icon" :data-lucide="option.icon" class="w-3 h-3"></i>
{{ option.label }}
</span>
</label>
</div>
</template>
<script setup lang="ts">
import { onUpdated, nextTick } from 'vue'
interface Option {
label: string
value: string
icon?: string
}
const props = defineProps<{
name: string
options: Option[]
modelValue: string
}>()
const emit = defineEmits(['update:modelValue'])
onUpdated(() => {
nextTick(() => {
if ((window as any).lucide) {
(window as any).lucide.createIcons()
}
})
})
</script>