新增:区域信息支持功能

1. 新增区域服务模块
   - 新增area.service.js处理区域信息查询
   - 优化城市选择器,支持区域信息获取

2. 完善表单基础信息页
   - 优化基础信息表单验证规则
   - 完善一键登录功能
   - 优化草稿管理功能

3. 更新配置文件
   - 更新API配置
   - 更新应用配置

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-25 13:53:00 +08:00
parent b251a20a04
commit 0f90faa595
13 changed files with 978 additions and 148 deletions

View File

@@ -738,9 +738,9 @@ body {
}
.city-picker-item.active {
background-color: #f5f5f5;
color: #333;
font-weight: 500;
background-color: #e8f0ff;
color: #3474fe;
font-weight: 600;
}
body.modal-open {
@@ -930,3 +930,148 @@ body.modal-open {
position: fixed;
width: 100%;
}
/* ==================== 提交成功页面样式 ==================== */
.submit-success-container {
max-width: 800px;
margin: 20px auto;
padding: 30px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.success-header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.success-icon {
font-size: 48px;
margin-bottom: 10px;
}
.success-header h2 {
font-size: 24px;
color: #333;
margin: 10px 0;
}
.formdata-id {
font-size: 14px;
color: #999;
}
.iframe-container {
position: relative;
margin-top: 20px;
}
.iframe-wrapper {
display: none;
}
.iframe-wrapper.active {
display: block;
}
.iframe-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 16px;
background: #f8f9fa;
border-radius: 8px 8px 0 0;
border: 1px solid #e9ecef;
}
.product-name {
font-weight: 600;
color: #333;
font-size: 16px;
}
.iframe-hint {
font-size: 13px;
color: #999;
}
.product-iframe {
width: 100%;
height: 600px;
border: 1px solid #e9ecef;
border-top: none;
border-radius: 0 0 8px 8px;
background: #fff;
}
.product-tabs {
display: flex;
gap: 10px;
margin-bottom: 15px;
border-bottom: 2px solid #e9ecef;
}
.product-tab {
flex: 1;
padding: 12px 20px;
background: none;
border: none;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
font-size: 15px;
color: #666;
cursor: pointer;
transition: all 0.3s ease;
}
.product-tab:hover {
color: #3474fe;
background: #f8f9fa;
}
.product-tab.active {
color: #3474fe;
border-bottom-color: #3474fe;
font-weight: 600;
}
.no-urls-message {
text-align: center;
padding: 40px 20px;
color: #666;
font-size: 16px;
}
.no-urls-message p {
margin: 10px 0;
}
.success-footer {
margin-top: 30px;
text-align: center;
}
.back-home-btn {
padding: 12px 40px;
background: linear-gradient(140deg, #3474fe, #3474fe);
color: #fff;
border: none;
border-radius: 24px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.back-home-btn:hover {
opacity: 0.9;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(52, 116, 254, 0.3);
}
.back-home-btn:active {
transform: translateY(0);
}