Files
jczxw-pc/app/pages/about/join/enterprise.vue
T
2026-09-11 12:25:38 +08:00

295 lines
8.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="join-page">
<div class="page-header">
<h1 class="page-title">企业会员申请</h1>
<p class="page-desc">加入我们共同推动决策咨询事业发展</p>
</div>
<div class="join-content">
<a-steps :current="currentStep" class="steps-wrap">
<a-step title="填写信息" />
<a-step title="上传资料" />
<a-step title="提交审核" />
</a-steps>
<a-form :model="formData" layout="vertical" class="join-form">
<!-- 步骤1填写信息 -->
<div v-show="currentStep === 0">
<h3 class="section-title">企业基本信息</h3>
<a-row :gutter="24">
<a-col :span="12">
<a-form-item label="企业名称" name="name" required>
<a-input v-model:value="formData.name" placeholder="请输入企业名称" />
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="统一社会信用代码" name="creditCode">
<a-input v-model:value="formData.creditCode" placeholder="请输入信用代码" />
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="24">
<a-col :span="12">
<a-form-item label="联系人" name="contact" required>
<a-input v-model:value="formData.contact" placeholder="请输入联系人姓名" />
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="联系电话" name="phone" required>
<a-input v-model:value="formData.phone" placeholder="请输入联系电话" />
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="24">
<a-col :span="12">
<a-form-item label="邮箱" name="email">
<a-input v-model:value="formData.email" placeholder="请输入邮箱" />
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="企业地址" name="address">
<a-input v-model:value="formData.address" placeholder="请输入企业地址" />
</a-form-item>
</a-col>
</a-row>
<a-form-item label="企业简介" name="bio">
<a-textarea v-model:value="formData.bio" :rows="4" placeholder="请简要介绍企业情况" />
</a-form-item>
</div>
<!-- 步骤2上传资料 -->
<div v-show="currentStep === 1">
<h3 class="section-title">资质证明材料</h3>
<p class="section-desc">请上传以下材料以便我们审核您的入会资格</p>
<div class="materials-tip">
<div>企业会员需提交入会申请表加盖公章)、营业执照法人身份证企业简介</div>
<a-button type="link" @click="navigateTo('/about/join/downloads')">前往资料下载</a-button>
</div>
<a-form-item label="入会申请表(加盖公章)">
<a-upload :before-upload="beforeUpload" :custom-request="handleUpload('applicationForm')">
<a-button><UploadOutlined /> 上传申请表</a-button>
</a-upload>
</a-form-item>
<a-form-item label="营业执照">
<a-upload :before-upload="beforeUpload" :custom-request="handleUpload('license')">
<a-button><UploadOutlined /> 上传营业执照</a-button>
</a-upload>
</a-form-item>
<a-form-item label="法人身份证">
<a-upload :before-upload="beforeUpload" :custom-request="handleUpload('idCard')">
<a-button><UploadOutlined /> 上传法人身份证</a-button>
</a-upload>
</a-form-item>
<a-form-item label="企业简介">
<a-upload :before-upload="beforeUpload" :custom-request="handleUpload('intro')">
<a-button><UploadOutlined /> 上传企业简介</a-button>
</a-upload>
<div class="upload-hint">支持 PDFWord 格式</div>
</a-form-item>
</div>
<!-- 步骤3确认提交 -->
<div v-show="currentStep === 2" class="confirm-section">
<a-result
title="确认提交申请"
sub-title="请确认您填写的信息和上传的材料准确无误"
>
<template #icon>
<CheckCircleOutlined style="font-size: 80px; color: #52c41a" />
</template>
<template #extra>
<a-button type="primary" size="large" @click="handleSubmit" :loading="submitting">
确认提交
</a-button>
</template>
</a-result>
</div>
<!-- 步骤按钮 -->
<div class="step-actions">
<a-button v-if="currentStep > 0" @click="currentStep--">上一步</a-button>
<a-button v-if="currentStep < 2" type="primary" @click="handleNext">下一步</a-button>
</div>
</a-form>
</div>
</div>
</template>
<script setup lang="ts">
import { message } from 'ant-design-vue'
import { CheckCircleOutlined, UploadOutlined } from '@ant-design/icons-vue'
import { submitSiteJoinApplication, uploadSiteJoinApplicationFile } from '@/api/site'
useHead({ title: '企业会员申请 - 决策咨询网' })
type UploadRequestOption = {
file: File
onSuccess: (response?: unknown) => void
onError: (error?: unknown) => void
}
type UploadResult = {
path: string
url: string
name: string
}
const currentStep = ref(0)
const submitting = ref(false)
const formData = reactive({
name: '',
creditCode: '',
contact: '',
phone: '',
email: '',
address: '',
bio: '',
applicationForm: '',
license: '',
idCard: '',
intro: '',
})
function beforeUpload(file: File) {
const isLt10M = file.size / 1024 / 1024 < 10
if (!isLt10M) {
message.error('文件大小不能超过 10MB')
return false
}
return true
}
function handleUpload(type: string) {
return async (option: UploadRequestOption) => {
try {
const form = new FormData()
form.append('file', option.file)
const data = await uploadSiteJoinApplicationFile(form)
formData[type as keyof typeof formData] = data.path
option.onSuccess(data)
message.success('上传成功')
} catch (e: unknown) {
option.onError(e)
message.error(e instanceof Error ? e.message : '上传失败')
}
}
}
function handleNext() {
if (currentStep.value === 0) {
if (!formData.name || !formData.contact || !formData.phone) {
message.warning('请填写必填项')
return
}
}
currentStep.value++
}
async function handleSubmit() {
submitting.value = true
try {
await submitSiteJoinApplication({
type: 'enterprise',
...formData,
})
message.success('提交成功,请等待审核')
navigateTo('/about/join')
} catch (e: unknown) {
message.error(e instanceof Error ? e.message : '提交失败')
} finally {
submitting.value = false
}
}
</script>
<style scoped>
.join-page {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
.page-header {
text-align: center;
margin-bottom: 40px;
}
.page-title {
font-size: 28px;
font-weight: 700;
color: #1f2937;
margin: 0 0 12px;
}
.page-desc {
font-size: 16px;
color: #6b7280;
margin: 0;
}
.join-content {
background: #fff;
border-radius: 16px;
padding: 40px;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.steps-wrap {
margin-bottom: 40px;
}
.section-title {
font-size: 18px;
font-weight: 600;
color: #1f2937;
margin: 0 0 20px;
}
.section-desc {
font-size: 14px;
color: #6b7280;
margin: -10px 0 20px;
}
.materials-tip {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 20px;
padding: 14px 16px;
background: #f8fafc;
border: 1px solid #dbeafe;
border-radius: 12px;
color: #475569;
}
.upload-hint {
font-size: 12px;
color: #9ca3af;
margin-top: 8px;
}
.confirm-section {
padding: 40px 0;
}
.step-actions {
display: flex;
justify-content: center;
gap: 16px;
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid #f0f0f0;
}
</style>