fix: 修复TypeScript类型错误

- 移除未使用的导入
- 修复产品详情页面的description类型错误
- 修复服务详情页面的description类型错误
- 修复联系表单API的类型错误
- 添加Award图标的导入
This commit is contained in:
张翔
2026-02-26 16:26:40 +08:00
parent e4cf4836dd
commit 3de9890fc4
8 changed files with 2030 additions and 9 deletions
+28 -5
View File
@@ -13,13 +13,36 @@ export default function ContactPage() {
const [isSubmitting, setIsSubmitting] = useState(false);
const [isSubmitted, setIsSubmitted] = useState(false);
async function handleSubmit(_formData: FormData) {
async function handleSubmit(formData: FormData) {
setIsSubmitting(true);
await new Promise(resolve => setTimeout(resolve, 1500));
setIsSubmitting(false);
setIsSubmitted(true);
try {
const response = await fetch('/api/contact', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
name: formData.get('name'),
phone: formData.get('phone'),
email: formData.get('email'),
subject: formData.get('subject'),
message: formData.get('message'),
}),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || '发送失败,请稍后再试');
}
setIsSubmitted(true);
} catch (error) {
console.error('Form submission error:', error);
alert(error instanceof Error ? error.message : '发送失败,请稍后再试');
} finally {
setIsSubmitting(false);
}
}
return (