xlqx/app/components/ContactFloatingButton.vue

201 lines
6.0 KiB
Vue
Raw Normal View History

2025-10-27 16:22:18 +08:00
<!-- components/ContactFloatingButton.vue -->
<template>
2025-11-03 17:06:37 +08:00
<div class="fixed right-2 lg:right-6 top-1/2 transform -translate-y-1/2 z-50 flex items-center">
2025-11-03 16:39:40 +08:00
<UPopover mode="click" :popper="{ placement: 'left-start' }" :content="{
align: 'center',
side: 'left',
sideOffset: 8
}" >
2025-10-27 16:22:18 +08:00
<UButton
2025-10-29 13:52:37 +08:00
class="bg-primary hover:bg-primary-600 text-white px-4 py-3 rounded-l-lg shadow-lg transition-all duration-300"
2025-11-03 16:39:40 +08:00
color="neutral" label="商家加盟"
2025-10-27 16:22:18 +08:00
variant="subtle"/>
<template #content>
2025-11-03 17:06:37 +08:00
<div class="w-75 lg:w-100 h-120 lg:h-160 p-4 bg-white rounded-lg shadow-xl overflow-y-auto">
2025-11-03 16:39:40 +08:00
<img src="https://api.ccttiot.com/image-1762158125769.png" alt="">
2025-11-03 17:06:37 +08:00
<h3 class="text-lg font-semibold mb-1 text-gray-800">商家加盟申请</h3>
2025-11-03 16:39:40 +08:00
<UForm
ref="formRef"
:state="formState"
2025-11-03 17:06:37 +08:00
class="space-y-4 w-full"
2025-11-03 16:39:40 +08:00
@submit="onSubmit"
2025-10-27 16:22:18 +08:00
>
2025-11-03 16:39:40 +08:00
<UFormGroup label="姓名" name="name" required>
<UInput
v-model="formState.name"
placeholder="请输入您的姓名"
size="md"
2025-11-03 17:06:37 +08:00
class="w-full mb-2"
2025-11-03 16:39:40 +08:00
/>
</UFormGroup>
<UFormGroup label="手机号" name="mobile" required>
<UInput
v-model="formState.mobile"
type="tel"
2025-11-03 17:06:37 +08:00
placeholder="请输入您的手机号"
2025-11-03 16:39:40 +08:00
size="md"
2025-11-03 17:06:37 +08:00
class="w-full mb-2"
2025-11-03 16:39:40 +08:00
/>
</UFormGroup>
<UFormGroup label="城市" name="city" required>
<UInput
v-model="formState.city"
2025-11-03 17:06:37 +08:00
placeholder="请输入您的意向合作城市"
2025-11-03 16:39:40 +08:00
size="md"
2025-11-03 17:06:37 +08:00
class="w-full mb-2"
2025-11-03 16:39:40 +08:00
/>
</UFormGroup>
<UFormGroup label="是否有设备" name="hasDevice">
<div class="flex gap-4">
<label class="flex items-center gap-2 cursor-pointer">
<input
type="radio"
v-model="formState.hasDevice"
:value="1"
class="w-4 h-4 text-primary"
/>
<span class="text-sm">有设备</span>
</label>
<label class="flex items-center gap-2 cursor-pointer">
<input
type="radio"
v-model="formState.hasDevice"
:value="0"
class="w-4 h-4 text-primary"
/>
<span class="text-sm">无设备</span>
</label>
</div>
</UFormGroup>
<UFormGroup label="留言内容" name="content" required>
<UTextarea
v-model="formState.content"
2025-11-03 17:06:37 +08:00
placeholder="请输入您想要了解的信息"
2025-11-03 16:39:40 +08:00
:rows="3"
size="md"
2025-11-03 17:06:37 +08:00
class="w-full mt-1"
2025-11-03 16:39:40 +08:00
/>
</UFormGroup>
<div class="flex gap-2 pt-2 ">
<UButton
type="submit"
:loading="isSubmitting"
:disabled="isSubmitting"
class="flex-1 bg-primary hover:bg-primary-600 justify-center items-center"
size="md"
>
{{ isSubmitting ? '提交中...' : '马上加盟 立即挣钱' }}
</UButton>
<UButton
type="button"
variant="outline"
@click="resetForm"
size="md"
>
重置
</UButton>
</div>
</UForm>
<img class="mt-2" src="https://api.ccttiot.com/image-1762158608753.png" alt="">
<img src="https://api.ccttiot.com/image-1762159041739.png" alt="">
<img src="https://api.ccttiot.com/image-1762159105486.png" alt="">
<img src="https://api.ccttiot.com/image-1762158699504.png" alt="">
2025-10-27 16:22:18 +08:00
</div>
</template>
</UPopover>
</div>
</template>
2025-11-03 16:39:40 +08:00
<script setup lang="ts">
import { ref, reactive } from 'vue'
import { submitMchApply, type MchApplyParams } from '~/config/api'
2025-11-03 17:06:37 +08:00
const toast = useToast()
2025-11-03 16:39:40 +08:00
const formRef = ref()
const isSubmitting = ref(false)
const formState = reactive<MchApplyParams>({
name: '',
mobile: '',
content: '',
hasDevice: 0,
city: ''
})
2025-11-03 17:06:37 +08:00
const showToast = (title: string, type: 'success' | 'error' = 'success') => {
toast.add({
title,
color: type === 'success' ? 'success' : 'error',
icon: type === 'success' ? 'i-heroicons-check-circle' : 'i-heroicons-exclamation-circle',
})
2025-11-03 16:39:40 +08:00
}
const resetForm = () => {
formState.name = ''
formState.mobile = ''
formState.content = ''
formState.hasDevice = 0
formState.city = ''
formRef.value?.clear()
}
const validateForm = (): boolean => {
if (!formState.name.trim()) {
2025-11-03 17:06:37 +08:00
showToast('请输入姓名', 'error')
2025-11-03 16:39:40 +08:00
return false
}
if (!formState.mobile.trim()) {
2025-11-03 17:06:37 +08:00
showToast('请输入手机号', 'error')
2025-11-03 16:39:40 +08:00
return false
}
// 简单的手机号验证
const mobileRegex = /^1[3-9]\d{9}$/
if (!mobileRegex.test(formState.mobile)) {
2025-11-03 17:06:37 +08:00
showToast('请输入正确的手机号', 'error')
2025-11-03 16:39:40 +08:00
return false
}
if (!formState.city.trim()) {
2025-11-03 17:06:37 +08:00
showToast('请输入所在城市', 'error')
2025-11-03 16:39:40 +08:00
return false
}
if (!formState.content.trim()) {
2025-11-03 17:06:37 +08:00
showToast('请输入留言内容', 'error')
2025-11-03 16:39:40 +08:00
return false
}
return true
}
const onSubmit = async () => {
if (!validateForm()) {
return
}
isSubmitting.value = true
try {
const response = await submitMchApply(formState)
if (response.code === 200) {
2025-11-03 17:06:37 +08:00
showToast('申请提交成功!我们会尽快与您联系。', 'success')
2025-11-03 16:39:40 +08:00
resetForm()
} else {
2025-11-03 17:06:37 +08:00
showToast(response.msg || '提交失败,请稍后重试', 'error')
2025-11-03 16:39:40 +08:00
}
} catch (error) {
console.error('提交申请失败:', error)
2025-11-03 17:06:37 +08:00
showToast('提交失败,请检查网络连接后重试', 'error')
2025-11-03 16:39:40 +08:00
} finally {
isSubmitting.value = false
}
}
</script>