Compare commits
3 Commits
8718429ad1
...
2fb1a3b23d
| Author | SHA1 | Date | |
|---|---|---|---|
| 2fb1a3b23d | |||
| cf843557a6 | |||
| 13f2940a3a |
@@ -13,8 +13,8 @@ export function login(data: { phone: string, code?: string, password?: string })
|
||||
const user: User = {
|
||||
id: 'user_001',
|
||||
username: data.phone,
|
||||
nickname: `用户${data.phone.slice(-4)}`,
|
||||
avatar: 'https://picsum.photos/200/200?random=avatar',
|
||||
nickname: `测试${data.phone.slice(-4)}`,
|
||||
avatar: '/static/images/avatar.jpg',
|
||||
phone: data.phone,
|
||||
creditLimits: [],
|
||||
member: mockMember,
|
||||
|
||||
@@ -129,16 +129,21 @@ function goToDetail() {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
/* 添加右边距避免与删除按钮重叠 */
|
||||
padding-right: 80rpx; /* 根据删除按钮大小调整 */
|
||||
}
|
||||
|
||||
.name {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
line-height: 1.4;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
overflow: hidden;
|
||||
/* 移除固定行数限制,让内容自然换行 */
|
||||
display: block;
|
||||
overflow: visible;
|
||||
white-space: normal;
|
||||
word-wrap: break-word;
|
||||
/* 调整最小高度确保有足够空间 */
|
||||
min-height: 80rpx;
|
||||
}
|
||||
|
||||
.specs {
|
||||
|
||||
@@ -8,3 +8,4 @@ export * from './finance'
|
||||
export * from './member'
|
||||
export * from './banner'
|
||||
export * from './address'
|
||||
export * from './loan-application'
|
||||
|
||||
141
src/mock/loan-application.ts
Normal file
141
src/mock/loan-application.ts
Normal file
@@ -0,0 +1,141 @@
|
||||
import { LoanApplicationStatus } from '@/typings/mall'
|
||||
import type { LoanApplicationRecord } from '@/typings/mall'
|
||||
|
||||
/**
|
||||
* 助贷申请记录模拟数据
|
||||
*/
|
||||
export const mockLoanApplicationRecords: LoanApplicationRecord[] = [
|
||||
{
|
||||
applicationId: "AP20230815001",
|
||||
loanType: "ENTERPRISE",
|
||||
loanTitle: "经营贷",
|
||||
dateLabel: "申请时间",
|
||||
dateValue: "2023-08-15",
|
||||
status: LoanApplicationStatus.PROCESSING,
|
||||
statusText: "处理中",
|
||||
progress: {
|
||||
show: true,
|
||||
steps: ["提交申请", "资料审核", "风险评估", "审批完成"],
|
||||
currentStepIndex: 2,
|
||||
stepStatus: "active"
|
||||
},
|
||||
alertInfo: {
|
||||
show: true,
|
||||
type: "info",
|
||||
content: "您的申请正在风控部门审核中,预计还需要1-2个工作日完成评估"
|
||||
},
|
||||
actions: [
|
||||
{
|
||||
code: "VIEW_DETAIL",
|
||||
text: "查看详情",
|
||||
style: "primary-blue"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
applicationId: "AP20230810002",
|
||||
loanType: "ENTERPRISE",
|
||||
loanTitle: "经营贷",
|
||||
dateLabel: "申请时间",
|
||||
dateValue: "2023-08-10",
|
||||
status: LoanApplicationStatus.COMPLETED,
|
||||
statusText: "已完成",
|
||||
actions: [
|
||||
{
|
||||
code: "DOWNLOAD_CONTRACT",
|
||||
text: "下载合同",
|
||||
style: "text-link"
|
||||
},
|
||||
{
|
||||
code: "VIEW_RESULT",
|
||||
text: "查看结果",
|
||||
style: "primary-green"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
applicationId: "AP20230805003",
|
||||
loanType: "REVITALIZATION",
|
||||
loanTitle: "振兴贷",
|
||||
dateLabel: "创建时间",
|
||||
dateValue: "2023-08-05",
|
||||
status: LoanApplicationStatus.PENDING,
|
||||
statusText: "待提交",
|
||||
progress: {
|
||||
show: true,
|
||||
steps: ["提交申请", "资料审核", "风险评估", "审批完成"],
|
||||
currentStepIndex: 0,
|
||||
stepStatus: "active"
|
||||
},
|
||||
alertInfo: {
|
||||
show: true,
|
||||
type: "warning",
|
||||
content: "您的申请资料尚未完整,请尽快完善资料后提交"
|
||||
},
|
||||
actions: [
|
||||
{
|
||||
code: "DELETE",
|
||||
text: "删除",
|
||||
style: "text-link"
|
||||
},
|
||||
{
|
||||
code: "CONTINUE_FILL",
|
||||
text: "继续填写",
|
||||
style: "primary-yellow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
applicationId: "AP20230728004",
|
||||
loanType: "HOUSING",
|
||||
loanTitle: "安居贷",
|
||||
dateLabel: "申请时间",
|
||||
dateValue: "2023-07-28",
|
||||
status: LoanApplicationStatus.PROCESSING,
|
||||
statusText: "处理中",
|
||||
progress: {
|
||||
show: true,
|
||||
steps: ["提交申请", "资料审核", "风险评估", "审批完成"],
|
||||
currentStepIndex: 1,
|
||||
stepStatus: "active"
|
||||
},
|
||||
alertInfo: {
|
||||
show: true,
|
||||
type: "info",
|
||||
content: "您的申请已进入资料审核阶段,请耐心等待"
|
||||
},
|
||||
actions: [
|
||||
{
|
||||
code: "CANCEL",
|
||||
text: "取消申请",
|
||||
style: "text-link"
|
||||
},
|
||||
{
|
||||
code: "VIEW_DETAIL",
|
||||
text: "查看详情",
|
||||
style: "primary-blue"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
applicationId: "AP20230720005",
|
||||
loanType: "ENTERPRISE",
|
||||
loanTitle: "经营贷",
|
||||
dateLabel: "申请时间",
|
||||
dateValue: "2023-07-20",
|
||||
status: LoanApplicationStatus.COMPLETED,
|
||||
statusText: "已完成",
|
||||
actions: [
|
||||
{
|
||||
code: "DOWNLOAD_CONTRACT",
|
||||
text: "下载合同",
|
||||
style: "text-link"
|
||||
},
|
||||
{
|
||||
code: "VIEW_RESULT",
|
||||
text: "查看结果",
|
||||
style: "primary-green"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
150
src/pages.json
150
src/pages.json
@@ -1,150 +0,0 @@
|
||||
{
|
||||
"globalStyle": {
|
||||
"navigationStyle": "default",
|
||||
"navigationBarTitleText": "unibest",
|
||||
"navigationBarBackgroundColor": "#f8f8f8",
|
||||
"navigationBarTextStyle": "black",
|
||||
"backgroundColor": "#FFFFFF"
|
||||
},
|
||||
"easycom": {
|
||||
"autoscan": true,
|
||||
"custom": {
|
||||
"^fg-(.*)": "@/components/fg-$1/fg-$1.vue",
|
||||
"^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)": "z-paging/components/z-paging$1/z-paging$1.vue",
|
||||
"^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue"
|
||||
}
|
||||
},
|
||||
"pages": [
|
||||
// GENERATED BY UNI-PAGES, PLATFORM: H5
|
||||
{
|
||||
"path": "pages/index/index",
|
||||
"type": "home",
|
||||
"style": {
|
||||
"navigationBarTitleText": "首页",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/finance/credit",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "信用额度",
|
||||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/finance/settlement",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "应结账款",
|
||||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/goods/cart",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "购物车"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/goods/detail",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "商品详情",
|
||||
"navigationBarBackgroundColor": "#ffffff",
|
||||
"navigationBarTextStyle": "black"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/login/index",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "登录",
|
||||
"navigationBarBackgroundColor": "#ffffff",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/me/me",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我的",
|
||||
"navigationBarBackgroundColor": "#fff",
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/member/index",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "会员中心",
|
||||
"navigationBarBackgroundColor": "#1a1a1a",
|
||||
"navigationBarTextStyle": "white"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/order/confirm",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "确认订单"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/order/detail",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "订单详情"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/order/list",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我的订单",
|
||||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/sort/index",
|
||||
"type": "page",
|
||||
"style": {
|
||||
"navigationBarTitleText": "分类",
|
||||
"disableScroll": true,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
],
|
||||
"subPackages": [],
|
||||
"tabBar": {
|
||||
"custom": true,
|
||||
"color": "#999999",
|
||||
"selectedColor": "#018d71",
|
||||
"backgroundColor": "#F8F8F8",
|
||||
"borderStyle": "black",
|
||||
"height": "50px",
|
||||
"fontSize": "10px",
|
||||
"iconWidth": "24px",
|
||||
"spacing": "3px",
|
||||
"list": [
|
||||
// GENERATED BY UNI-PAGES, PLATFORM: H5
|
||||
{
|
||||
"text": "首页",
|
||||
"pagePath": "pages/index/index"
|
||||
},
|
||||
{
|
||||
"text": "分类",
|
||||
"pagePath": "pages/sort/index"
|
||||
},
|
||||
{
|
||||
"text": "购物车",
|
||||
"pagePath": "pages/goods/cart"
|
||||
},
|
||||
{
|
||||
"text": "我的",
|
||||
"pagePath": "pages/me/me"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
654
src/pages/me/loan-application-records.vue
Normal file
654
src/pages/me/loan-application-records.vue
Normal file
@@ -0,0 +1,654 @@
|
||||
<script lang="ts" setup>
|
||||
import { mockLoanApplicationRecords } from '@/mock/loan-application'
|
||||
import type { LoanApplicationRecord, LoanApplicationStatus } from '@/typings/mall'
|
||||
|
||||
definePage({
|
||||
style: {
|
||||
navigationBarTitleText: '助贷申请记录',
|
||||
navigationBarBackgroundColor: '#fff',
|
||||
navigationBarTextStyle: 'black',
|
||||
},
|
||||
})
|
||||
|
||||
// 申请记录列表
|
||||
const applicationRecords = ref<LoanApplicationRecord[]>(mockLoanApplicationRecords)
|
||||
|
||||
// 详情弹窗相关
|
||||
const showDetailModal = ref(false)
|
||||
const selectedRecord = ref<LoanApplicationRecord | null>(null)
|
||||
|
||||
// 打开详情弹窗
|
||||
function openDetailModal(record: LoanApplicationRecord) {
|
||||
selectedRecord.value = record
|
||||
showDetailModal.value = true
|
||||
}
|
||||
|
||||
// 关闭详情弹窗
|
||||
function closeDetailModal() {
|
||||
showDetailModal.value = false
|
||||
selectedRecord.value = null
|
||||
}
|
||||
|
||||
// 处理按钮点击
|
||||
function handleActionClick(record: LoanApplicationRecord, action: any) {
|
||||
if (action.code === 'VIEW_DETAIL' || action.code === 'VIEW_RESULT' || action.code === 'CONTINUE_FILL') {
|
||||
openDetailModal(record)
|
||||
} else if (action.code === 'DOWNLOAD_CONTRACT') {
|
||||
uni.showToast({
|
||||
title: '合同下载中...',
|
||||
icon: 'loading'
|
||||
})
|
||||
setTimeout(() => {
|
||||
uni.showToast({
|
||||
title: '合同已下载',
|
||||
icon: 'success'
|
||||
})
|
||||
}, 1500)
|
||||
} else if (action.code === 'CANCEL') {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '确定要取消该申请吗?',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
uni.showToast({
|
||||
title: '申请已取消',
|
||||
icon: 'success'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
} else if (action.code === 'DELETE') {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '确定要删除该申请记录吗?',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
uni.showToast({
|
||||
title: '记录已删除',
|
||||
icon: 'success'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 获取状态颜色
|
||||
function getStatusColor(status: LoanApplicationStatus) {
|
||||
switch (status) {
|
||||
case 'PROCESSING':
|
||||
return {
|
||||
bg: 'rgba(59, 130, 246, 0.1)',
|
||||
text: '#3B82F6'
|
||||
}
|
||||
case 'COMPLETED':
|
||||
return {
|
||||
bg: 'rgba(16, 185, 129, 0.1)',
|
||||
text: '#10B981'
|
||||
}
|
||||
case 'PENDING':
|
||||
return {
|
||||
bg: 'rgba(245, 158, 11, 0.1)',
|
||||
text: '#F59E0B'
|
||||
}
|
||||
default:
|
||||
return {
|
||||
bg: '#f5f5f5',
|
||||
text: '#999'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 获取按钮样式
|
||||
function getButtonStyle(style: string) {
|
||||
switch (style) {
|
||||
case 'primary-blue':
|
||||
return 'background: #3B82F6; color: #fff;'
|
||||
case 'primary-green':
|
||||
return 'background: #10B981; color: #fff;'
|
||||
case 'primary-yellow':
|
||||
return 'background: #F59E0B; color: #fff;'
|
||||
case 'text-link':
|
||||
return 'background: transparent; color: #666; border: none;'
|
||||
default:
|
||||
return 'background: #f5f5f5; color: #333;'
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="loan-application-records-page">
|
||||
<!-- 申请记录列表 -->
|
||||
<view class="records-list">
|
||||
<view
|
||||
v-for="record in applicationRecords"
|
||||
:key="record.applicationId"
|
||||
class="record-card"
|
||||
>
|
||||
<!-- 头部区域 -->
|
||||
<view class="card-header">
|
||||
<view class="title-section">
|
||||
<text class="title">{{ record.loanTitle }}</text>
|
||||
<view
|
||||
class="status-badge"
|
||||
:style="{
|
||||
background: getStatusColor(record.status).bg,
|
||||
color: getStatusColor(record.status).text
|
||||
}"
|
||||
>
|
||||
{{ record.statusText }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="info-section">
|
||||
<text class="application-id">申请编号:{{ record.applicationId }}</text>
|
||||
<text class="date-info">{{ record.dateLabel }}:{{ record.dateValue }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 进度条区域 -->
|
||||
<view v-if="record.progress && record.progress.show" class="progress-section">
|
||||
<view class="steps-container">
|
||||
<view
|
||||
v-for="(step, index) in record.progress.steps"
|
||||
:key="index"
|
||||
class="step-item"
|
||||
:class="{
|
||||
'completed': index < record.progress.currentStepIndex,
|
||||
'current': index === record.progress.currentStepIndex,
|
||||
'future': index > record.progress.currentStepIndex
|
||||
}"
|
||||
>
|
||||
<view class="step-circle">
|
||||
<text v-if="index < record.progress.currentStepIndex" class="i-carbon-checkmark"></text>
|
||||
<text v-else>{{ index + 1 }}</text>
|
||||
</view>
|
||||
<text class="step-text">{{ step }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 提示信息区域 -->
|
||||
<view v-if="record.alertInfo && record.alertInfo.show" class="alert-section">
|
||||
<view
|
||||
class="alert-box"
|
||||
:class="record.alertInfo.type"
|
||||
>
|
||||
<text
|
||||
v-if="record.alertInfo.type === 'info'"
|
||||
class="i-carbon-information alert-icon"
|
||||
></text>
|
||||
<text
|
||||
v-else-if="record.alertInfo.type === 'warning'"
|
||||
class="i-carbon-warning-alt alert-icon"
|
||||
></text>
|
||||
<text class="alert-content">{{ record.alertInfo.content }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 底部操作区 -->
|
||||
<view class="actions-section">
|
||||
<view
|
||||
v-for="action in record.actions"
|
||||
:key="action.code"
|
||||
class="action-btn"
|
||||
:style="getButtonStyle(action.style)"
|
||||
@click="handleActionClick(record, action)"
|
||||
>
|
||||
{{ action.text }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 详情弹窗 -->
|
||||
<view v-if="showDetailModal" class="modal-overlay" @click="closeDetailModal">
|
||||
<view class="modal-content" @click.stop>
|
||||
<view class="modal-header">
|
||||
<text class="modal-title">申请详情</text>
|
||||
<text class="i-carbon-close modal-close" @click="closeDetailModal"></text>
|
||||
</view>
|
||||
|
||||
<view v-if="selectedRecord" class="modal-body">
|
||||
<view class="detail-item">
|
||||
<text class="detail-label">申请编号</text>
|
||||
<text class="detail-value">{{ selectedRecord.applicationId }}</text>
|
||||
</view>
|
||||
<view class="detail-item">
|
||||
<text class="detail-label">贷款类型</text>
|
||||
<text class="detail-value">{{ selectedRecord.loanTitle }}</text>
|
||||
</view>
|
||||
<view class="detail-item">
|
||||
<text class="detail-label">申请状态</text>
|
||||
<text
|
||||
class="detail-value status-text"
|
||||
:style="{ color: getStatusColor(selectedRecord.status).text }"
|
||||
>
|
||||
{{ selectedRecord.statusText }}
|
||||
</text>
|
||||
</view>
|
||||
<view class="detail-item">
|
||||
<text class="detail-label">{{ selectedRecord.dateLabel }}</text>
|
||||
<text class="detail-value">{{ selectedRecord.dateValue }}</text>
|
||||
</view>
|
||||
|
||||
<!-- 进度详情 -->
|
||||
<view v-if="selectedRecord.progress && selectedRecord.progress.show" class="progress-detail">
|
||||
<text class="detail-label">申请进度</text>
|
||||
<view class="progress-steps">
|
||||
<view
|
||||
v-for="(step, index) in selectedRecord.progress.steps"
|
||||
:key="index"
|
||||
class="progress-step"
|
||||
:class="{
|
||||
'completed': index < selectedRecord.progress.currentStepIndex,
|
||||
'current': index === selectedRecord.progress.currentStepIndex,
|
||||
'future': index > selectedRecord.progress.currentStepIndex
|
||||
}"
|
||||
>
|
||||
<view class="step-dot"></view>
|
||||
<text class="step-name">{{ step }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 提示信息 -->
|
||||
<view v-if="selectedRecord.alertInfo && selectedRecord.alertInfo.show" class="alert-detail">
|
||||
<view
|
||||
class="alert-detail-box"
|
||||
:class="selectedRecord.alertInfo.type"
|
||||
>
|
||||
<text
|
||||
v-if="selectedRecord.alertInfo.type === 'info'"
|
||||
class="i-carbon-information alert-icon"
|
||||
></text>
|
||||
<text
|
||||
v-else-if="selectedRecord.alertInfo.type === 'warning'"
|
||||
class="i-carbon-warning-alt alert-icon"
|
||||
></text>
|
||||
<text>{{ selectedRecord.alertInfo.content }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.loan-application-records-page {
|
||||
min-height: 100vh;
|
||||
background: #f5f5f5;
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.records-list {
|
||||
.record-card {
|
||||
background: #fff;
|
||||
border-radius: 16rpx;
|
||||
padding: 30rpx;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.card-header {
|
||||
margin-bottom: 24rpx;
|
||||
|
||||
.title-section {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 16rpx;
|
||||
|
||||
.title {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
padding: 8rpx 16rpx;
|
||||
border-radius: 20rpx;
|
||||
font-size: 24rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
.info-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8rpx;
|
||||
|
||||
.application-id, .date-info {
|
||||
font-size: 26rpx;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.progress-section {
|
||||
margin-bottom: 24rpx;
|
||||
|
||||
.steps-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
padding: 0 10rpx;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 30rpx;
|
||||
left: 50rpx;
|
||||
right: 50rpx;
|
||||
height: 2rpx;
|
||||
background: #e5e5e5;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.step-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
flex: 1;
|
||||
|
||||
.step-circle {
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 26rpx;
|
||||
font-weight: 600;
|
||||
margin-bottom: 12rpx;
|
||||
}
|
||||
|
||||
.step-text {
|
||||
font-size: 22rpx;
|
||||
text-align: center;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
&.completed {
|
||||
.step-circle {
|
||||
background: #10B981;
|
||||
color: #fff;
|
||||
}
|
||||
.step-text {
|
||||
color: #10B981;
|
||||
}
|
||||
}
|
||||
|
||||
&.current {
|
||||
.step-circle {
|
||||
background: #3B82F6;
|
||||
color: #fff;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
.step-text {
|
||||
color: #3B82F6;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
&.future {
|
||||
.step-circle {
|
||||
background: #f5f5f5;
|
||||
color: #999;
|
||||
}
|
||||
.step-text {
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.alert-section {
|
||||
margin-bottom: 24rpx;
|
||||
|
||||
.alert-box {
|
||||
padding: 20rpx;
|
||||
border-radius: 12rpx;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 12rpx;
|
||||
|
||||
&.info {
|
||||
background: rgba(59, 130, 246, 0.1);
|
||||
|
||||
.alert-icon {
|
||||
color: #3B82F6;
|
||||
}
|
||||
|
||||
.alert-content {
|
||||
color: #3B82F6;
|
||||
}
|
||||
}
|
||||
|
||||
&.warning {
|
||||
background: rgba(245, 158, 11, 0.1);
|
||||
|
||||
.alert-icon {
|
||||
color: #F59E0B;
|
||||
}
|
||||
|
||||
.alert-content {
|
||||
color: #F59E0B;
|
||||
}
|
||||
}
|
||||
|
||||
.alert-icon {
|
||||
font-size: 32rpx;
|
||||
margin-top: 2rpx;
|
||||
}
|
||||
|
||||
.alert-content {
|
||||
flex: 1;
|
||||
font-size: 26rpx;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.actions-section {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 20rpx;
|
||||
|
||||
.action-btn {
|
||||
padding: 16rpx 32rpx;
|
||||
border-radius: 8rpx;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
border: 1rpx solid #e5e5e5;
|
||||
|
||||
&:active {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 弹窗样式
|
||||
.modal-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
padding: 40rpx;
|
||||
|
||||
.modal-content {
|
||||
background: #fff;
|
||||
border-radius: 16rpx;
|
||||
width: 100%;
|
||||
max-width: 600rpx;
|
||||
max-height: 80vh;
|
||||
overflow: hidden;
|
||||
|
||||
.modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 30rpx;
|
||||
border-bottom: 1rpx solid #f5f5f5;
|
||||
|
||||
.modal-title {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
font-size: 36rpx;
|
||||
color: #999;
|
||||
|
||||
&:active {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding: 30rpx;
|
||||
max-height: 60vh;
|
||||
overflow-y: auto;
|
||||
|
||||
.detail-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 20rpx 0;
|
||||
border-bottom: 1rpx solid #f5f5f5;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.detail-label {
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.detail-value {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
font-weight: 500;
|
||||
|
||||
&.status-text {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.progress-detail {
|
||||
padding: 20rpx 0;
|
||||
|
||||
.detail-label {
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
margin-bottom: 20rpx;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.progress-steps {
|
||||
.progress-step {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.step-dot {
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
border-radius: 50%;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.step-name {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
&.completed {
|
||||
.step-dot {
|
||||
background: #10B981;
|
||||
}
|
||||
.step-name {
|
||||
color: #10B981;
|
||||
}
|
||||
}
|
||||
|
||||
&.current {
|
||||
.step-dot {
|
||||
background: #3B82F6;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
.step-name {
|
||||
color: #3B82F6;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
&.future {
|
||||
.step-dot {
|
||||
background: #f5f5f5;
|
||||
border: 2rpx solid #e5e5e5;
|
||||
}
|
||||
.step-name {
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.alert-detail {
|
||||
padding: 20rpx 0;
|
||||
|
||||
.alert-detail-box {
|
||||
padding: 20rpx;
|
||||
border-radius: 12rpx;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 12rpx;
|
||||
font-size: 26rpx;
|
||||
line-height: 1.5;
|
||||
|
||||
&.info {
|
||||
background: rgba(59, 130, 246, 0.1);
|
||||
color: #3B82F6;
|
||||
|
||||
.alert-icon {
|
||||
color: #3B82F6;
|
||||
}
|
||||
}
|
||||
|
||||
&.warning {
|
||||
background: rgba(245, 158, 11, 0.1);
|
||||
color: #F59E0B;
|
||||
|
||||
.alert-icon {
|
||||
color: #F59E0B;
|
||||
}
|
||||
}
|
||||
|
||||
.alert-icon {
|
||||
font-size: 32rpx;
|
||||
margin-top: 2rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
942
src/pages/me/loan-application.vue
Normal file
942
src/pages/me/loan-application.vue
Normal file
@@ -0,0 +1,942 @@
|
||||
<script lang="ts" setup>
|
||||
definePage({
|
||||
style: {
|
||||
navigationBarTitleText: '贷款申请',
|
||||
navigationBarBackgroundColor: '#fff',
|
||||
navigationBarTextStyle: 'black',
|
||||
},
|
||||
})
|
||||
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
// 个人信息
|
||||
personalInfo: {
|
||||
name: '',
|
||||
phone: '',
|
||||
idCard: '',
|
||||
region: ['', '', ''], // 省、市、区
|
||||
detailAddress: '',
|
||||
},
|
||||
// 经营信息
|
||||
businessInfo: {
|
||||
businessProject: '',
|
||||
businessTime: '',
|
||||
annualIncome: '',
|
||||
hasDebt: 'no', // 'no' 或 'yes'
|
||||
debtAmount: '',
|
||||
loanDemand: '',
|
||||
assets: [] as string[], // 家庭主要资产
|
||||
},
|
||||
// 证件信息
|
||||
documentInfo: {
|
||||
businessLicense: '', // 营业执照或租赁合同
|
||||
otherMaterials: [] as string[], // 其他辅助材料
|
||||
},
|
||||
})
|
||||
|
||||
// 表单验证错误
|
||||
const formErrors = ref({
|
||||
personalInfo: {
|
||||
name: '',
|
||||
phone: '',
|
||||
idCard: '',
|
||||
region: '',
|
||||
detailAddress: '',
|
||||
},
|
||||
businessInfo: {
|
||||
businessProject: '',
|
||||
businessTime: '',
|
||||
annualIncome: '',
|
||||
debtAmount: '',
|
||||
loanDemand: '',
|
||||
assets: '',
|
||||
},
|
||||
documentInfo: {
|
||||
businessLicense: '',
|
||||
},
|
||||
})
|
||||
|
||||
// 省市区选项(模拟数据)
|
||||
const regionOptions = ref([
|
||||
{
|
||||
value: '110000',
|
||||
label: '北京市',
|
||||
children: [
|
||||
{
|
||||
value: '110100',
|
||||
label: '北京市',
|
||||
children: [
|
||||
{ value: '110101', label: '东城区' },
|
||||
{ value: '110102', label: '西城区' },
|
||||
{ value: '110105', label: '朝阳区' },
|
||||
{ value: '110106', label: '丰台区' },
|
||||
{ value: '110107', label: '石景山区' },
|
||||
{ value: '110108', label: '海淀区' },
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
value: '310000',
|
||||
label: '上海市',
|
||||
children: [
|
||||
{
|
||||
value: '310100',
|
||||
label: '上海市',
|
||||
children: [
|
||||
{ value: '310101', label: '黄浦区' },
|
||||
{ value: '310104', label: '徐汇区' },
|
||||
{ value: '310105', label: '长宁区' },
|
||||
{ value: '310106', label: '静安区' },
|
||||
{ value: '310107', label: '普陀区' },
|
||||
{ value: '310109', label: '虹口区' },
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
value: '440000',
|
||||
label: '广东省',
|
||||
children: [
|
||||
{
|
||||
value: '440100',
|
||||
label: '广州市',
|
||||
children: [
|
||||
{ value: '440103', label: '荔湾区' },
|
||||
{ value: '440104', label: '越秀区' },
|
||||
{ value: '440105', label: '海珠区' },
|
||||
{ value: '440106', label: '天河区' },
|
||||
{ value: '440111', label: '白云区' },
|
||||
{ value: '440112', label: '黄埔区' },
|
||||
]
|
||||
},
|
||||
{
|
||||
value: '440300',
|
||||
label: '深圳市',
|
||||
children: [
|
||||
{ value: '440303', label: '罗湖区' },
|
||||
{ value: '440304', label: '福田区' },
|
||||
{ value: '440305', label: '南山区' },
|
||||
{ value: '440306', label: '宝安区' },
|
||||
{ value: '440307', label: '龙岗区' },
|
||||
{ value: '440308', label: '龙华区' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
])
|
||||
|
||||
// 家庭主要资产选项
|
||||
const assetOptions = [
|
||||
{ value: 'house', label: '商品房' },
|
||||
{ value: 'selfBuiltState', label: '自建房 (国有)' },
|
||||
{ value: 'selfBuiltCollective', label: '自建房 (集体)' },
|
||||
{ value: 'shop', label: '商铺' },
|
||||
{ value: 'land', label: '土地' },
|
||||
{ value: 'car', label: '车辆' },
|
||||
{ value: 'other', label: '其他' },
|
||||
{ value: 'none', label: '无' },
|
||||
]
|
||||
|
||||
// 选择省市区
|
||||
function handleRegionPicker() {
|
||||
// 简化的省市区选择器,使用 uni.showActionSheet
|
||||
const provinces = regionOptions.value.map(item => item.label)
|
||||
|
||||
uni.showActionSheet({
|
||||
itemList: provinces,
|
||||
success: (res) => {
|
||||
if (res.tapIndex !== undefined) {
|
||||
const selectedProvince = regionOptions.value[res.tapIndex]
|
||||
formData.value.personalInfo.region[0] = selectedProvince.value
|
||||
|
||||
// 选择市
|
||||
const cities = selectedProvince.children.map((item: any) => item.label)
|
||||
uni.showActionSheet({
|
||||
itemList: cities,
|
||||
success: (cityRes) => {
|
||||
if (cityRes.tapIndex !== undefined) {
|
||||
const selectedCity = selectedProvince.children[cityRes.tapIndex]
|
||||
formData.value.personalInfo.region[1] = selectedCity.value
|
||||
|
||||
// 选择区
|
||||
const districts = selectedCity.children.map((item: any) => item.label)
|
||||
uni.showActionSheet({
|
||||
itemList: districts,
|
||||
success: (districtRes) => {
|
||||
if (districtRes.tapIndex !== undefined) {
|
||||
const selectedDistrict = selectedCity.children[districtRes.tapIndex]
|
||||
formData.value.personalInfo.region[2] = selectedDistrict.value
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 处理资产选择
|
||||
function handleAssetChange(value: string) {
|
||||
const { assets } = formData.value.businessInfo
|
||||
|
||||
// 如果选择"无",则取消其他所有选项
|
||||
if (value === 'none') {
|
||||
formData.value.businessInfo.assets = ['none']
|
||||
return
|
||||
}
|
||||
|
||||
// 如果选择了其他选项,则取消"无"选项
|
||||
if (assets.includes('none')) {
|
||||
const index = assets.indexOf('none')
|
||||
assets.splice(index, 1)
|
||||
}
|
||||
|
||||
// 切换选项
|
||||
const index = assets.indexOf(value)
|
||||
if (index > -1) {
|
||||
assets.splice(index, 1)
|
||||
} else {
|
||||
assets.push(value)
|
||||
}
|
||||
}
|
||||
|
||||
// 上传营业执照
|
||||
function handleUploadBusinessLicense() {
|
||||
uni.chooseImage({
|
||||
count: 1,
|
||||
sizeType: ['compressed'],
|
||||
sourceType: ['album', 'camera'],
|
||||
success: (res) => {
|
||||
formData.value.documentInfo.businessLicense = res.tempFilePaths[0]
|
||||
formErrors.value.documentInfo.businessLicense = ''
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 上传其他材料
|
||||
function handleUploadOtherMaterials() {
|
||||
const currentCount = formData.value.documentInfo.otherMaterials.length
|
||||
const maxCount = 5
|
||||
|
||||
if (currentCount >= maxCount) {
|
||||
uni.showToast({
|
||||
title: `最多上传${maxCount}张图片`,
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
|
||||
uni.chooseImage({
|
||||
count: maxCount - currentCount,
|
||||
sizeType: ['compressed'],
|
||||
sourceType: ['album', 'camera'],
|
||||
success: (res) => {
|
||||
if (Array.isArray(res.tempFilePaths)) {
|
||||
formData.value.documentInfo.otherMaterials.push(...res.tempFilePaths)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 删除其他材料
|
||||
function handleRemoveOtherMaterial(index: number) {
|
||||
formData.value.documentInfo.otherMaterials.splice(index, 1)
|
||||
}
|
||||
|
||||
// 预览图片
|
||||
function handlePreviewImage(url: string) {
|
||||
uni.previewImage({
|
||||
urls: [url]
|
||||
})
|
||||
}
|
||||
|
||||
// 表单验证
|
||||
function validateForm() {
|
||||
let isValid = true
|
||||
const errors = formErrors.value
|
||||
|
||||
// 重置错误信息
|
||||
Object.keys(errors.personalInfo).forEach(key => {
|
||||
errors.personalInfo[key as keyof typeof errors.personalInfo] = ''
|
||||
})
|
||||
Object.keys(errors.businessInfo).forEach(key => {
|
||||
errors.businessInfo[key as keyof typeof errors.businessInfo] = ''
|
||||
})
|
||||
errors.documentInfo.businessLicense = ''
|
||||
|
||||
// 验证个人信息
|
||||
if (!formData.value.personalInfo.name.trim()) {
|
||||
errors.personalInfo.name = '请输入姓名'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (!formData.value.personalInfo.phone.trim()) {
|
||||
errors.personalInfo.phone = '请输入联系方式'
|
||||
isValid = false
|
||||
} else if (!/^1[3-9]\d{9}$/.test(formData.value.personalInfo.phone)) {
|
||||
errors.personalInfo.phone = '请输入正确的手机号'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (!formData.value.personalInfo.idCard.trim()) {
|
||||
errors.personalInfo.idCard = '请输入身份证号码'
|
||||
isValid = false
|
||||
} else if (!/^\d{17}[\dXx]$/.test(formData.value.personalInfo.idCard)) {
|
||||
errors.personalInfo.idCard = '请输入正确的身份证号码'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (formData.value.personalInfo.region.some(item => !item)) {
|
||||
errors.personalInfo.region = '请选择省市区'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (!formData.value.personalInfo.detailAddress.trim()) {
|
||||
errors.personalInfo.detailAddress = '请输入详细地址'
|
||||
isValid = false
|
||||
} else if (formData.value.personalInfo.detailAddress.trim().length < 5 || formData.value.personalInfo.detailAddress.trim().length > 100) {
|
||||
errors.personalInfo.detailAddress = '详细地址长度应在5-100字之间'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
// 验证经营信息
|
||||
if (!formData.value.businessInfo.businessProject.trim()) {
|
||||
errors.businessInfo.businessProject = '请输入经营项目'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (!formData.value.businessInfo.businessTime.trim()) {
|
||||
errors.businessInfo.businessTime = '请输入经营时间'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (!formData.value.businessInfo.annualIncome.trim()) {
|
||||
errors.businessInfo.annualIncome = '请输入最近1年经营收入'
|
||||
isValid = false
|
||||
} else if (isNaN(Number(formData.value.businessInfo.annualIncome)) || Number(formData.value.businessInfo.annualIncome) <= 0) {
|
||||
errors.businessInfo.annualIncome = '请输入正确的金额'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (formData.value.businessInfo.hasDebt === 'yes' && !formData.value.businessInfo.debtAmount.trim()) {
|
||||
errors.businessInfo.debtAmount = '请输入负债金额'
|
||||
isValid = false
|
||||
} else if (formData.value.businessInfo.hasDebt === 'yes' && (isNaN(Number(formData.value.businessInfo.debtAmount)) || Number(formData.value.businessInfo.debtAmount) <= 0)) {
|
||||
errors.businessInfo.debtAmount = '请输入正确的金额'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (!formData.value.businessInfo.loanDemand.trim()) {
|
||||
errors.businessInfo.loanDemand = '请输入贷款需求'
|
||||
isValid = false
|
||||
} else if (isNaN(Number(formData.value.businessInfo.loanDemand)) || Number(formData.value.businessInfo.loanDemand) <= 0) {
|
||||
errors.businessInfo.loanDemand = '请输入正确的金额'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
if (formData.value.businessInfo.assets.length === 0) {
|
||||
errors.businessInfo.assets = '请至少选择一项家庭主要资产'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
// 验证证件信息
|
||||
if (!formData.value.documentInfo.businessLicense) {
|
||||
errors.documentInfo.businessLicense = '请上传营业执照或租赁合同'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
return isValid
|
||||
}
|
||||
|
||||
// 提交表单
|
||||
function handleSubmit() {
|
||||
// 取消表单校验,直接提交
|
||||
|
||||
uni.showLoading({
|
||||
title: '提交中...'
|
||||
})
|
||||
|
||||
// 模拟提交
|
||||
setTimeout(() => {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
|
||||
// 延迟返回
|
||||
setTimeout(() => {
|
||||
uni.navigateBack()
|
||||
}, 1500)
|
||||
}, 2000)
|
||||
}
|
||||
|
||||
// 返回上一页
|
||||
function handleBack() {
|
||||
uni.navigateBack()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="loan-application-page">
|
||||
<!-- 个人信息模块 -->
|
||||
<view class="form-card">
|
||||
<view class="card-title">
|
||||
<view class="title-bar"></view>
|
||||
<text class="title-text">个人信息</text>
|
||||
</view>
|
||||
|
||||
<view class="form-content">
|
||||
<view class="form-item">
|
||||
<view class="label">姓名</view>
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.personalInfo.name"
|
||||
placeholder="请输入姓名"
|
||||
:maxlength="20"
|
||||
/>
|
||||
<text v-if="formErrors.personalInfo.name" class="error-text">{{ formErrors.personalInfo.name }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">联系方式</view>
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.personalInfo.phone"
|
||||
placeholder="请输入联系方式"
|
||||
type="number"
|
||||
:maxlength="11"
|
||||
/>
|
||||
<text v-if="formErrors.personalInfo.phone" class="error-text">{{ formErrors.personalInfo.phone }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">身份证号码</view>
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.personalInfo.idCard"
|
||||
placeholder="请输入身份证号码"
|
||||
:maxlength="18"
|
||||
/>
|
||||
<text v-if="formErrors.personalInfo.idCard" class="error-text">{{ formErrors.personalInfo.idCard }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item" @click="handleRegionPicker">
|
||||
<view class="label">经营地址</view>
|
||||
<view class="picker-input">
|
||||
<text v-if="formData.personalInfo.region.some(item => item)" class="picker-text">
|
||||
{{ regionOptions.find(p => p.value === formData.personalInfo.region[0])?.label }}
|
||||
{{ regionOptions.find(p => p.value === formData.personalInfo.region[0])?.children?.find(c => c.value === formData.personalInfo.region[1])?.label }}
|
||||
{{ regionOptions.find(p => p.value === formData.personalInfo.region[0])?.children?.find(c => c.value === formData.personalInfo.region[1])?.children?.find(d => d.value === formData.personalInfo.region[2])?.label }}
|
||||
</text>
|
||||
<text v-else class="picker-placeholder">选择省,市,区</text>
|
||||
<text class="i-carbon-chevron-right picker-arrow"></text>
|
||||
</view>
|
||||
<text v-if="formErrors.personalInfo.region" class="error-text">{{ formErrors.personalInfo.region }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">详细地址</view>
|
||||
<textarea
|
||||
class="textarea"
|
||||
v-model="formData.personalInfo.detailAddress"
|
||||
placeholder="请输入街道小区楼牌号等"
|
||||
:maxlength="100"
|
||||
/>
|
||||
<text v-if="formErrors.personalInfo.detailAddress" class="error-text">{{ formErrors.personalInfo.detailAddress }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 经营信息模块 -->
|
||||
<view class="form-card">
|
||||
<view class="card-title">
|
||||
<view class="title-bar"></view>
|
||||
<text class="title-text">经营信息</text>
|
||||
</view>
|
||||
|
||||
<view class="form-content">
|
||||
<view class="form-item">
|
||||
<view class="label">经营项目</view>
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.businessInfo.businessProject"
|
||||
placeholder="请输入经营项目"
|
||||
/>
|
||||
<text v-if="formErrors.businessInfo.businessProject" class="error-text">{{ formErrors.businessInfo.businessProject }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">经营时间</view>
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.businessInfo.businessTime"
|
||||
placeholder="请输入经营时间"
|
||||
/>
|
||||
<text v-if="formErrors.businessInfo.businessTime" class="error-text">{{ formErrors.businessInfo.businessTime }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">最近1年经营收入</view>
|
||||
<view class="input-with-suffix">
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.businessInfo.annualIncome"
|
||||
placeholder="请输入金额"
|
||||
type="digit"
|
||||
/>
|
||||
<text class="suffix">万元</text>
|
||||
</view>
|
||||
<text v-if="formErrors.businessInfo.annualIncome" class="error-text">{{ formErrors.businessInfo.annualIncome }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">负债情况</view>
|
||||
<view class="radio-group">
|
||||
<view
|
||||
class="radio-item"
|
||||
:class="{ active: formData.businessInfo.hasDebt === 'no' }"
|
||||
@click="formData.businessInfo.hasDebt = 'no'"
|
||||
>
|
||||
<text class="radio-dot"></text>
|
||||
<text>无负债</text>
|
||||
</view>
|
||||
<view
|
||||
class="radio-item"
|
||||
:class="{ active: formData.businessInfo.hasDebt === 'yes' }"
|
||||
@click="formData.businessInfo.hasDebt = 'yes'"
|
||||
>
|
||||
<text class="radio-dot"></text>
|
||||
<text>有负债</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="formData.businessInfo.hasDebt === 'yes'" class="debt-amount">
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.businessInfo.debtAmount"
|
||||
placeholder="请输入负债金额"
|
||||
type="digit"
|
||||
/>
|
||||
<text v-if="formErrors.businessInfo.debtAmount" class="error-text">{{ formErrors.businessInfo.debtAmount }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">贷款需求</view>
|
||||
<view class="input-with-suffix">
|
||||
<input
|
||||
class="input"
|
||||
v-model="formData.businessInfo.loanDemand"
|
||||
placeholder="请输入金额"
|
||||
type="digit"
|
||||
/>
|
||||
<text class="suffix">万元</text>
|
||||
</view>
|
||||
<text v-if="formErrors.businessInfo.loanDemand" class="error-text">{{ formErrors.businessInfo.loanDemand }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">家庭主要资产</view>
|
||||
<view class="checkbox-group">
|
||||
<view
|
||||
v-for="option in assetOptions"
|
||||
:key="option.value"
|
||||
class="checkbox-item"
|
||||
:class="{ active: formData.businessInfo.assets.includes(option.value) }"
|
||||
@click="handleAssetChange(option.value)"
|
||||
>
|
||||
<text class="checkbox-icon"></text>
|
||||
<text>{{ option.label }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<text v-if="formErrors.businessInfo.assets" class="error-text">{{ formErrors.businessInfo.assets }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 证件信息模块 -->
|
||||
<view class="form-card">
|
||||
<view class="card-title">
|
||||
<view class="title-bar"></view>
|
||||
<text class="title-text">证件信息</text>
|
||||
</view>
|
||||
|
||||
<view class="form-content">
|
||||
<view class="form-item">
|
||||
<view class="label">营业执照(租赁合同)</view>
|
||||
<view class="upload-area" @click="handleUploadBusinessLicense">
|
||||
<image v-if="formData.documentInfo.businessLicense" :src="formData.documentInfo.businessLicense" class="uploaded-image" @click.stop="handlePreviewImage(formData.documentInfo.businessLicense)" />
|
||||
<view v-else class="upload-placeholder">
|
||||
<text class="i-carbon-camera upload-icon"></text>
|
||||
<text class="upload-text">点击上传图片</text>
|
||||
</view>
|
||||
</view>
|
||||
<text v-if="formErrors.documentInfo.businessLicense" class="error-text">{{ formErrors.documentInfo.businessLicense }}</text>
|
||||
</view>
|
||||
|
||||
<view class="form-item">
|
||||
<view class="label">其他辅助材料</view>
|
||||
<view class="upload-list">
|
||||
<view
|
||||
v-for="(image, index) in formData.documentInfo.otherMaterials"
|
||||
:key="index"
|
||||
class="upload-item"
|
||||
>
|
||||
<image :src="image" class="uploaded-image" @click="handlePreviewImage(image)" />
|
||||
<view class="delete-btn" @click="handleRemoveOtherMaterial(index)">
|
||||
<text class="i-carbon-close"></text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view
|
||||
v-if="formData.documentInfo.otherMaterials.length < 5"
|
||||
class="upload-area small"
|
||||
@click="handleUploadOtherMaterials"
|
||||
>
|
||||
<text class="i-carbon-add upload-icon"></text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 底部提交按钮 -->
|
||||
<view class="submit-bar">
|
||||
<button class="submit-btn" @click="handleSubmit">提交资料</button>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.loan-application-page {
|
||||
min-height: 100vh;
|
||||
background: #F5F7FA;
|
||||
padding-bottom: 120rpx;
|
||||
}
|
||||
|
||||
.form-card {
|
||||
background: #FFFFFF;
|
||||
margin: 20rpx;
|
||||
border-radius: 12rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 30rpx;
|
||||
border-bottom: 1rpx solid #F0F0F0;
|
||||
|
||||
.title-bar {
|
||||
width: 6rpx;
|
||||
height: 30rpx;
|
||||
background: #FF6600;
|
||||
border-radius: 3rpx;
|
||||
margin-right: 16rpx;
|
||||
}
|
||||
|
||||
.title-text {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
|
||||
.form-content {
|
||||
padding: 30rpx;
|
||||
}
|
||||
|
||||
.form-item {
|
||||
margin-bottom: 40rpx;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.label {
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
margin-bottom: 16rpx;
|
||||
}
|
||||
|
||||
.input {
|
||||
width: 100%;
|
||||
height: 80rpx;
|
||||
background: #F8F8F8;
|
||||
border-radius: 8rpx;
|
||||
padding: 0 24rpx;
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.textarea {
|
||||
width: 100%;
|
||||
min-height: 120rpx;
|
||||
background: #F8F8F8;
|
||||
border-radius: 8rpx;
|
||||
padding: 24rpx;
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.picker-input {
|
||||
width: 100%;
|
||||
height: 80rpx;
|
||||
background: #F8F8F8;
|
||||
border-radius: 8rpx;
|
||||
padding: 0 24rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
box-sizing: border-box;
|
||||
|
||||
.picker-text {
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.picker-placeholder {
|
||||
font-size: 28rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.picker-arrow {
|
||||
font-size: 32rpx;
|
||||
color: #CCCCCC;
|
||||
}
|
||||
}
|
||||
|
||||
.input-with-suffix {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.input {
|
||||
flex: 1;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.suffix {
|
||||
height: 80rpx;
|
||||
padding: 0 24rpx;
|
||||
background: #F0F0F0;
|
||||
border-top-right-radius: 8rpx;
|
||||
border-bottom-right-radius: 8rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 28rpx;
|
||||
color: #666666;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
.radio-group {
|
||||
display: flex;
|
||||
gap: 40rpx;
|
||||
|
||||
.radio-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12rpx;
|
||||
|
||||
.radio-dot {
|
||||
width: 36rpx;
|
||||
height: 36rpx;
|
||||
border-radius: 50%;
|
||||
border: 2rpx solid #DDDDDD;
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 18rpx;
|
||||
height: 18rpx;
|
||||
border-radius: 50%;
|
||||
background: #28C445;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
.radio-dot {
|
||||
border-color: #28C445;
|
||||
|
||||
&::after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.debt-amount {
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
|
||||
.checkbox-group {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20rpx;
|
||||
|
||||
.checkbox-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12rpx;
|
||||
padding: 16rpx 24rpx;
|
||||
background: #F8F8F8;
|
||||
border-radius: 8rpx;
|
||||
|
||||
.checkbox-icon {
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 4rpx;
|
||||
border: 2rpx solid #DDDDDD;
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
background: #28C445;
|
||||
border-radius: 2rpx;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
.checkbox-icon {
|
||||
border-color: #28C445;
|
||||
|
||||
&::after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.upload-area {
|
||||
width: 100%;
|
||||
height: 200rpx;
|
||||
background: #F8F8F8;
|
||||
border-radius: 8rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
&.small {
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
}
|
||||
|
||||
.upload-placeholder {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 16rpx;
|
||||
|
||||
.upload-icon {
|
||||
font-size: 48rpx;
|
||||
color: #CCCCCC;
|
||||
}
|
||||
|
||||
.upload-text {
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
|
||||
.uploaded-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 8rpx;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
.upload-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20rpx;
|
||||
|
||||
.upload-item {
|
||||
position: relative;
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
|
||||
.uploaded-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 8rpx;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.delete-btn {
|
||||
position: absolute;
|
||||
top: -10rpx;
|
||||
right: -10rpx;
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.i-carbon-close {
|
||||
font-size: 24rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.error-text {
|
||||
display: block;
|
||||
font-size: 24rpx;
|
||||
color: #FF4D4F;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.submit-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 20rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||
|
||||
.submit-btn {
|
||||
width: 100%;
|
||||
height: 88rpx;
|
||||
background: #28C445;
|
||||
border-radius: 44rpx;
|
||||
color: #FFFFFF;
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
&:active {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -40,6 +40,13 @@ function navigateTo(url: string) {
|
||||
uni.navigateTo({ url })
|
||||
}
|
||||
|
||||
// 跳转到贷款申请页面
|
||||
function goToLoanApplication() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/me/loan-application'
|
||||
})
|
||||
}
|
||||
|
||||
// 退出登录
|
||||
function handleLogout() {
|
||||
uni.showModal({
|
||||
@@ -162,7 +169,7 @@ function handleLogout() {
|
||||
</view>
|
||||
</view>
|
||||
<view class="card-footer">
|
||||
<view class="apply-btn">立即申请</view>
|
||||
<view class="apply-btn" @click="goToLoanApplication">立即申请</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -189,7 +196,7 @@ function handleLogout() {
|
||||
</view>
|
||||
</view>
|
||||
<view class="card-footer">
|
||||
<view class="apply-btn">立即申请</view>
|
||||
<view class="apply-btn" @click="goToLoanApplication">立即申请</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -203,6 +210,11 @@ function handleLogout() {
|
||||
<text class="label">会员中心</text>
|
||||
<text class="i-carbon-chevron-right arrow"></text>
|
||||
</view>
|
||||
<view class="cell" @click="navigateTo('/pages/me/loan-application-records')">
|
||||
<text class="i-carbon-document-attachment icon"></text>
|
||||
<text class="label">助贷申请记录</text>
|
||||
<text class="i-carbon-chevron-right arrow"></text>
|
||||
</view>
|
||||
<view class="cell">
|
||||
<text class="i-carbon-location icon"></text>
|
||||
<text class="label">地址管理</text>
|
||||
|
||||
@@ -351,9 +351,12 @@ function handleCancel() {
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
padding: 0 24rpx;
|
||||
padding-left: calc(24rpx + env(safe-area-inset-left));
|
||||
padding-right: calc(24rpx + env(safe-area-inset-right));
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||
gap: 20rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.btn {
|
||||
padding: 16rpx 40rpx;
|
||||
|
||||
@@ -205,3 +205,50 @@ export interface Banner {
|
||||
link?: string // 跳转链接
|
||||
goodsId?: string // 关联商品ID
|
||||
}
|
||||
|
||||
/**
|
||||
* 助贷申请记录相关类型定义
|
||||
*/
|
||||
|
||||
// 助贷申请状态
|
||||
export enum LoanApplicationStatus {
|
||||
PROCESSING = 'PROCESSING', // 处理中
|
||||
COMPLETED = 'COMPLETED', // 已完成
|
||||
PENDING = 'PENDING', // 待提交
|
||||
}
|
||||
|
||||
// 进度条数据
|
||||
export interface LoanApplicationProgress {
|
||||
show: boolean
|
||||
steps: string[] // 步骤名称数组
|
||||
currentStepIndex: number // 当前步骤索引 (从0开始)
|
||||
stepStatus: string // 当前步骤状态
|
||||
}
|
||||
|
||||
// 提示信息框
|
||||
export interface LoanApplicationAlertInfo {
|
||||
show: boolean
|
||||
type: 'info' | 'warning' // info(蓝), warning(黄)
|
||||
content: string
|
||||
}
|
||||
|
||||
// 底部按钮配置
|
||||
export interface LoanApplicationAction {
|
||||
code: string
|
||||
text: string
|
||||
style: string // text-link, primary-blue, primary-green, primary-yellow
|
||||
}
|
||||
|
||||
// 助贷申请记录
|
||||
export interface LoanApplicationRecord {
|
||||
applicationId: string // 申请编号
|
||||
loanType: string // 贷款类型:ENTERPRISE, 其他
|
||||
loanTitle: string // 显示标题
|
||||
dateLabel: string // 动态标签:申请时间 / 创建时间
|
||||
dateValue: string // 日期值
|
||||
status: LoanApplicationStatus // 状态枚举
|
||||
statusText: string // 状态中文文案
|
||||
progress?: LoanApplicationProgress // 进度条数据 (仅Processing和Pending状态需要)
|
||||
alertInfo?: LoanApplicationAlertInfo // 提示信息框 (可空)
|
||||
actions: LoanApplicationAction[] // 底部按钮配置
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ export default defineConfig({
|
||||
// 动态图标需要在这里配置,或者写在vue页面中注释掉
|
||||
safelist: ['i-carbon-code', 'i-carbon-home', 'i-carbon-user','i-carbon-shopping-cart','i-carbon-view-mode-2','i-carbon-webhook',
|
||||
'i-carbon-restaurant','i-carbon-crop','i-carbon-ibm-deployable-architecture',
|
||||
'i-carbon-edge-device','i-carbon-ibm-cloud-direct-link-1-dedicated-hosting','i-carbon-face-satisfied'],
|
||||
'i-carbon-edge-device','i-carbon-ibm-cloud-direct-link-1-dedicated-hosting','i-carbon-face-satisfied','i-carbon-document-attachment'],
|
||||
rules: [
|
||||
[
|
||||
'p-safe',
|
||||
|
||||
Reference in New Issue
Block a user