2025-08-16 14:39:34 +08:00
|
|
|
|
<template>
|
2025-08-16 15:36:15 +08:00
|
|
|
|
<view class="agents-page">
|
2025-08-16 14:39:34 +08:00
|
|
|
|
<!-- 头部区域 -->
|
2025-08-16 15:28:26 +08:00
|
|
|
|
<custom-nav-bar3 title=""></custom-nav-bar3>
|
2025-08-16 14:39:34 +08:00
|
|
|
|
<view class="header">
|
2025-08-16 15:01:04 +08:00
|
|
|
|
<image :src="commonEnum.AGENT" class="agent-background" mode="aspectFill"></image>
|
2025-08-16 14:39:34 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 主要内容区域 -->
|
|
|
|
|
|
<view class="main-content">
|
2025-08-16 15:36:15 +08:00
|
|
|
|
<!-- 表单区域 -->
|
|
|
|
|
|
<view class="form-section">
|
|
|
|
|
|
<!-- 姓名输入 -->
|
|
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">请填写您的姓名</view>
|
|
|
|
|
|
<input
|
|
|
|
|
|
v-model="formData.name"
|
|
|
|
|
|
class="form-input"
|
|
|
|
|
|
maxlength="20"
|
|
|
|
|
|
placeholder="请输入您的姓名"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 联系方式输入 -->
|
|
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">请填写您的联系方式</view>
|
|
|
|
|
|
<input
|
|
|
|
|
|
v-model="formData.phone"
|
|
|
|
|
|
class="form-input"
|
|
|
|
|
|
maxlength="11"
|
|
|
|
|
|
placeholder="请输入您的联系方式"
|
|
|
|
|
|
type="number"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 身份证号码输入 -->
|
|
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">请输入您的身份证号码</view>
|
|
|
|
|
|
<input
|
|
|
|
|
|
v-model="formData.idCard"
|
|
|
|
|
|
class="form-input"
|
|
|
|
|
|
maxlength="18"
|
|
|
|
|
|
placeholder="请输入您的身份证号码"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 服务区域选择 -->
|
|
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">请选择您的服务区域</view>
|
|
|
|
|
|
<view class="form-selector" @click="selectServiceArea">
|
|
|
|
|
|
<text class="selector-text">{{ formData.serviceArea || '请选择服务区域' }}</text>
|
|
|
|
|
|
<text class="arrow-icon">></text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 详细地址输入 -->
|
|
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">请输入您的详细地址</view>
|
|
|
|
|
|
<input
|
|
|
|
|
|
v-model="formData.detailAddress"
|
|
|
|
|
|
class="form-input"
|
|
|
|
|
|
maxlength="100"
|
|
|
|
|
|
placeholder="请输入您的详细地址"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 协议同意 -->
|
|
|
|
|
|
<view class="agreement-section">
|
|
|
|
|
|
<view class="agreement-item" @click="toggleAgreement">
|
|
|
|
|
|
<view :class="{ checked: formData.agreed }" class="checkbox">
|
|
|
|
|
|
<text v-if="formData.agreed" class="checkmark">✓</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<text class="agreement-text">
|
|
|
|
|
|
我已阅读并同意
|
|
|
|
|
|
<text class="agreement-link" @click.stop="showAgreement">《代理商协议》</text>
|
|
|
|
|
|
</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 提交按钮 -->
|
|
|
|
|
|
<view class="submit-section">
|
2025-08-19 16:38:21 +08:00
|
|
|
|
<button :disabled="!canSubmit || submitting" class="submit-btn" @click="submitApplication">
|
|
|
|
|
|
{{ submitting ? '提交中...' : '申请成为代理商' }}
|
2025-08-16 15:36:15 +08:00
|
|
|
|
</button>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-08-16 14:39:34 +08:00
|
|
|
|
</view>
|
2025-08-19 16:49:48 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 代理商协议模态框 -->
|
|
|
|
|
|
<view v-if="showAgreementModal" class="agreement-modal-overlay" @click="hideAgreement">
|
|
|
|
|
|
<view class="agreement-modal" @click.stop>
|
|
|
|
|
|
<view class="agreement-modal-header">
|
|
|
|
|
|
<text class="agreement-modal-title">代理商协议</text>
|
|
|
|
|
|
<text class="agreement-modal-close" @click="hideAgreement">×</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<scroll-view class="agreement-modal-content" scroll-y>
|
|
|
|
|
|
<rich-text :nodes="agreementContent"></rich-text>
|
|
|
|
|
|
</scroll-view>
|
|
|
|
|
|
<view class="agreement-modal-footer">
|
|
|
|
|
|
<button class="agreement-modal-btn" @click="hideAgreement">我知道了</button>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-08-16 14:39:34 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import commonEnum from '../../enum/commonEnum'
|
2025-08-19 16:38:21 +08:00
|
|
|
|
import { applyForAgent, getAgentAgreement, getServiceAreas } from '@/api/agents'
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
2025-08-16 15:36:15 +08:00
|
|
|
|
name: 'AgentsPage',
|
2025-08-16 14:39:34 +08:00
|
|
|
|
computed: {
|
|
|
|
|
|
commonEnum() {
|
|
|
|
|
|
return commonEnum
|
|
|
|
|
|
},
|
2025-08-16 15:36:15 +08:00
|
|
|
|
canSubmit() {
|
|
|
|
|
|
return (
|
|
|
|
|
|
this.formData.name &&
|
|
|
|
|
|
this.formData.phone &&
|
|
|
|
|
|
this.formData.idCard &&
|
|
|
|
|
|
this.formData.serviceArea &&
|
|
|
|
|
|
this.formData.detailAddress &&
|
2025-08-19 16:38:21 +08:00
|
|
|
|
this.formData.agreed &&
|
|
|
|
|
|
!this.submitting
|
2025-08-16 15:36:15 +08:00
|
|
|
|
)
|
|
|
|
|
|
},
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
onLoad() {
|
2025-08-19 16:38:21 +08:00
|
|
|
|
// 页面加载时获取服务区域列表和协议内容
|
|
|
|
|
|
this.loadServiceAreas()
|
|
|
|
|
|
this.loadAgreement()
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
formData: {
|
|
|
|
|
|
name: '张珊珊',
|
|
|
|
|
|
phone: '',
|
2025-08-16 15:36:15 +08:00
|
|
|
|
idCard: '',
|
|
|
|
|
|
serviceArea: '福建省宁德市福鼎市',
|
|
|
|
|
|
detailAddress: '太姥山镇秦屿大道2号',
|
|
|
|
|
|
agreed: true,
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
2025-08-19 16:38:21 +08:00
|
|
|
|
submitting: false,
|
|
|
|
|
|
serviceAreas: [],
|
|
|
|
|
|
agreementContent: '',
|
2025-08-19 16:49:48 +08:00
|
|
|
|
showAgreementModal: false,
|
2025-08-19 16:38:21 +08:00
|
|
|
|
// 区域ID映射
|
|
|
|
|
|
areaIdMap: {},
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2025-08-19 16:38:21 +08:00
|
|
|
|
// 加载服务区域列表
|
|
|
|
|
|
async loadServiceAreas() {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await getServiceAreas()
|
|
|
|
|
|
if (response.code === 200 && response.data) {
|
|
|
|
|
|
// 处理服务器返回的区域数据,提取所有区域名称和ID映射
|
|
|
|
|
|
const { names, idMap } = this.extractRegionData(response.data)
|
|
|
|
|
|
this.serviceAreas = names
|
|
|
|
|
|
this.areaIdMap = idMap
|
|
|
|
|
|
console.log('获取到的区域列表:', this.serviceAreas)
|
|
|
|
|
|
console.log('区域ID映射:', this.areaIdMap)
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('获取服务区域失败:', error)
|
|
|
|
|
|
// 使用默认区域列表
|
|
|
|
|
|
this.serviceAreas = [
|
2025-08-16 15:36:15 +08:00
|
|
|
|
'福建省宁德市福鼎市',
|
|
|
|
|
|
'福建省宁德市霞浦县',
|
|
|
|
|
|
'福建省宁德市古田县',
|
|
|
|
|
|
'福建省宁德市屏南县',
|
2025-08-19 16:38:21 +08:00
|
|
|
|
]
|
|
|
|
|
|
// 默认区域ID映射
|
|
|
|
|
|
this.areaIdMap = {
|
|
|
|
|
|
'福建省宁德市福鼎市': 8,
|
|
|
|
|
|
'福建省宁德市霞浦县': 9,
|
|
|
|
|
|
'福建省宁德市古田县': 10,
|
|
|
|
|
|
'福建省宁德市屏南县': 11,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 从区域数据中提取区域名称和ID映射
|
|
|
|
|
|
extractRegionData(regions) {
|
|
|
|
|
|
const names = []
|
|
|
|
|
|
const idMap = {}
|
|
|
|
|
|
|
|
|
|
|
|
const extractData = (regionList) => {
|
|
|
|
|
|
regionList.forEach(region => {
|
|
|
|
|
|
names.push(region.name)
|
|
|
|
|
|
idMap[region.name] = region.id
|
|
|
|
|
|
if (region.children && region.children.length > 0) {
|
|
|
|
|
|
extractData(region.children)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extractData(regions)
|
|
|
|
|
|
return { names, idMap }
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 加载代理商协议
|
|
|
|
|
|
async loadAgreement() {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await getAgentAgreement()
|
|
|
|
|
|
if (response.code === 200 && response.data) {
|
|
|
|
|
|
this.agreementContent = response.data.content || '这里是代理商协议的详细内容...'
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('获取代理商协议失败:', error)
|
|
|
|
|
|
this.agreementContent = '这里是代理商协议的详细内容...'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 选择服务区域
|
|
|
|
|
|
selectServiceArea() {
|
|
|
|
|
|
if (this.serviceAreas.length === 0) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '暂无可用区域',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uni.showActionSheet({
|
|
|
|
|
|
itemList: this.serviceAreas,
|
2025-08-16 14:39:34 +08:00
|
|
|
|
success: res => {
|
2025-08-19 16:38:21 +08:00
|
|
|
|
this.formData.serviceArea = this.serviceAreas[res.tapIndex]
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
})
|
2025-08-16 15:36:15 +08:00
|
|
|
|
},
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
// 切换协议同意状态
|
|
|
|
|
|
toggleAgreement() {
|
|
|
|
|
|
this.formData.agreed = !this.formData.agreed
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
// 显示代理商协议
|
|
|
|
|
|
showAgreement() {
|
2025-08-19 16:49:48 +08:00
|
|
|
|
this.showAgreementModal = true
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 隐藏代理商协议
|
|
|
|
|
|
hideAgreement() {
|
|
|
|
|
|
this.showAgreementModal = false
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-08-19 16:38:21 +08:00
|
|
|
|
// 验证表单数据
|
|
|
|
|
|
validateForm() {
|
|
|
|
|
|
if (!this.formData.name.trim()) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入姓名',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.formData.phone.trim()) {
|
2025-08-16 15:36:15 +08:00
|
|
|
|
uni.showToast({
|
2025-08-19 16:38:21 +08:00
|
|
|
|
title: '请输入手机号',
|
2025-08-16 15:36:15 +08:00
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
2025-08-19 16:38:21 +08:00
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 验证手机号格式
|
|
|
|
|
|
const phoneRegex = /^1[3-9]\d{9}$/
|
|
|
|
|
|
if (!phoneRegex.test(this.formData.phone)) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入正确的手机号',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.formData.idCard.trim()) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入身份证号',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 验证身份证号格式
|
|
|
|
|
|
const idCardRegex = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/
|
|
|
|
|
|
if (!idCardRegex.test(this.formData.idCard)) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入正确的身份证号',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.formData.serviceArea) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请选择服务区域',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.formData.detailAddress.trim()) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入详细地址',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.formData.agreed) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请先同意代理商协议',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 提交申请
|
|
|
|
|
|
async submitApplication() {
|
|
|
|
|
|
if (!this.validateForm()) {
|
2025-08-16 14:39:34 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-19 16:38:21 +08:00
|
|
|
|
this.submitting = true
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 构建请求数据
|
|
|
|
|
|
const regionId = this.areaIdMap[this.formData.serviceArea]
|
|
|
|
|
|
if (!regionId) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '无效的服务区域,请重新选择',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const requestData = {
|
|
|
|
|
|
name: this.formData.name.trim(),
|
|
|
|
|
|
phone: this.formData.phone.trim(),
|
|
|
|
|
|
idCard: this.formData.idCard.trim(),
|
|
|
|
|
|
regionId: regionId,
|
|
|
|
|
|
address: this.formData.detailAddress.trim(),
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
console.log('提交代理商申请:', requestData)
|
|
|
|
|
|
console.log('选择的区域:', this.formData.serviceArea, '对应ID:', regionId)
|
2025-08-16 15:36:15 +08:00
|
|
|
|
|
2025-08-19 16:38:21 +08:00
|
|
|
|
const response = await applyForAgent(requestData)
|
|
|
|
|
|
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
uni.showModal({
|
|
|
|
|
|
title: '申请成功',
|
|
|
|
|
|
content: '您的代理商申请已提交,我们将在3个工作日内审核并联系您。',
|
|
|
|
|
|
showCancel: false,
|
|
|
|
|
|
confirmText: '确定',
|
|
|
|
|
|
success: () => {
|
|
|
|
|
|
// 重置表单
|
|
|
|
|
|
this.resetForm()
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
} else {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: response.msg || '申请失败,请重试',
|
|
|
|
|
|
icon: 'none',
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('提交代理商申请失败:', error)
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '网络错误,请重试',
|
|
|
|
|
|
icon: 'none',
|
2025-08-16 15:36:15 +08:00
|
|
|
|
})
|
2025-08-19 16:38:21 +08:00
|
|
|
|
} finally {
|
|
|
|
|
|
this.submitting = false
|
|
|
|
|
|
}
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
2025-08-16 15:36:15 +08:00
|
|
|
|
|
|
|
|
|
|
// 重置表单
|
|
|
|
|
|
resetForm() {
|
|
|
|
|
|
this.formData = {
|
|
|
|
|
|
name: '',
|
|
|
|
|
|
phone: '',
|
|
|
|
|
|
idCard: '',
|
|
|
|
|
|
serviceArea: '',
|
|
|
|
|
|
detailAddress: '',
|
|
|
|
|
|
agreed: false,
|
|
|
|
|
|
}
|
2025-08-16 14:39:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.agents-page {
|
2025-08-16 14:39:34 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
background: #f3f5f6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 头部区域
|
|
|
|
|
|
.header {
|
2025-08-16 15:01:04 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
background: #fedfcd;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:01:04 +08:00
|
|
|
|
.agent-background {
|
2025-08-16 14:39:34 +08:00
|
|
|
|
position: relative;
|
2025-08-16 15:01:04 +08:00
|
|
|
|
width: 750rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 主要内容区域
|
|
|
|
|
|
.main-content {
|
2025-08-16 15:01:04 +08:00
|
|
|
|
position: relative;
|
2025-08-16 15:28:26 +08:00
|
|
|
|
top: -34rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border-radius: 40rpx 40rpx 0 0;
|
|
|
|
|
|
margin: 0 30rpx;
|
|
|
|
|
|
padding: 40rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 表单区域
|
|
|
|
|
|
.form-section {
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.form-title {
|
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
margin-bottom: 60rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-item {
|
2025-08-16 15:36:15 +08:00
|
|
|
|
margin-bottom: 40rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.form-label {
|
2025-08-16 14:39:34 +08:00
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #333;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
font-weight: 500;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.form-input {
|
|
|
|
|
|
width: 100%;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
height: 80rpx;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border: 2rpx solid #e8e8e8;
|
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
|
padding: 0 24rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
font-size: 28rpx;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
color: #333;
|
|
|
|
|
|
box-sizing: border-box;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
|
|
|
|
|
&:focus {
|
2025-08-16 15:36:15 +08:00
|
|
|
|
border-color: #ff6b6b;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
&::placeholder {
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.form-selector {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border: 2rpx solid #e8e8e8;
|
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
|
padding: 0 24rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
box-sizing: border-box;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.selector-text {
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.arrow-icon {
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
|
}
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
// 协议区域
|
|
|
|
|
|
.agreement-section {
|
|
|
|
|
|
margin-bottom: 60rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.agreement-item {
|
2025-08-16 14:39:34 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.checkbox {
|
|
|
|
|
|
width: 32rpx;
|
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
|
border: 2rpx solid #ff6b6b;
|
|
|
|
|
|
border-radius: 6rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
margin-right: 20rpx;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
background: #ffffff;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
&.checked {
|
|
|
|
|
|
background: #f15a04;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.checkmark {
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
|
font-weight: bold;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.agreement-text {
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
flex: 1;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
.agreement-link {
|
|
|
|
|
|
color: #f15a04;
|
|
|
|
|
|
text-decoration: underline;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
// 提交区域
|
|
|
|
|
|
.submit-section {
|
|
|
|
|
|
.submit-btn {
|
2025-08-16 14:39:34 +08:00
|
|
|
|
width: 100%;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
height: 88rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
background: #f15a04;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
color: #ffffff;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
border: none;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
border-radius: 12rpx;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-weight: bold;
|
2025-08-16 15:36:15 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
&:disabled {
|
|
|
|
|
|
background: #cccccc;
|
|
|
|
|
|
color: #999999;
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-16 15:36:15 +08:00
|
|
|
|
&:active {
|
|
|
|
|
|
transform: scale(0.98);
|
2025-08-16 14:39:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-19 16:49:48 +08:00
|
|
|
|
|
|
|
|
|
|
// 代理商协议模态框样式
|
|
|
|
|
|
.agreement-modal-overlay {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal {
|
|
|
|
|
|
width: 90%;
|
|
|
|
|
|
max-width: 600rpx;
|
|
|
|
|
|
max-height: 80%;
|
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal-header {
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
border-bottom: 1rpx solid #e8e8e8;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
background: #f8f8f8;
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal-title {
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal-close {
|
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 10rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal-content {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
padding:50rpx;
|
|
|
|
|
|
max-width: 500rpx;
|
|
|
|
|
|
max-height: 600rpx;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal-footer {
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
border-top: 1rpx solid #e8e8e8;
|
|
|
|
|
|
background: #f8f8f8;
|
|
|
|
|
|
|
|
|
|
|
|
.agreement-modal-btn {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
background: #f15a04;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
|
transform: scale(0.98);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-16 14:39:34 +08:00
|
|
|
|
</style>
|