1108 lines
38 KiB
Vue
1108 lines
38 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
||
<el-form-item label="信贷客户身份证号" prop="personId">
|
||
<el-input
|
||
v-model="queryParams.personId"
|
||
placeholder="请输入身份证号(支持模糊搜索)"
|
||
clearable
|
||
style="width: 240px"
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="关系类型" prop="relationType">
|
||
<el-select v-model="queryParams.relationType" placeholder="请选择关系类型" clearable style="width: 240px">
|
||
<el-option
|
||
v-for="item in relationTypeOptions"
|
||
:key="item.value"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="关系人姓名" prop="relationName">
|
||
<el-input
|
||
v-model="queryParams.relationName"
|
||
placeholder="请输入关系人姓名"
|
||
clearable
|
||
style="width: 240px"
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="状态" prop="status">
|
||
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable style="width: 240px">
|
||
<el-option label="有效" :value="1" />
|
||
<el-option label="无效" :value="0" />
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||
</el-form-item>
|
||
</el-form>
|
||
|
||
<el-row :gutter="10" class="mb8">
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="primary"
|
||
plain
|
||
icon="el-icon-plus"
|
||
size="mini"
|
||
@click="handleAdd"
|
||
v-hasPermi="['ccdi:custFmyRelation:add']"
|
||
>新增</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="success"
|
||
plain
|
||
icon="el-icon-upload2"
|
||
size="mini"
|
||
@click="handleImport"
|
||
v-hasPermi="['ccdi:custFmyRelation:import']"
|
||
>导入</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="warning"
|
||
plain
|
||
icon="el-icon-download"
|
||
size="mini"
|
||
@click="handleExport"
|
||
v-hasPermi="['ccdi:custFmyRelation:export']"
|
||
>导出</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5" v-if="showFailureButton">
|
||
<el-tooltip
|
||
:content="getLastImportTooltip()"
|
||
placement="top"
|
||
>
|
||
<el-button
|
||
type="warning"
|
||
plain
|
||
icon="el-icon-warning"
|
||
size="mini"
|
||
@click="viewImportFailures"
|
||
>查看导入失败记录</el-button>
|
||
</el-tooltip>
|
||
</el-col>
|
||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||
</el-row>
|
||
|
||
<el-table v-loading="loading" :data="relationList" @selection-change="handleSelectionChange">
|
||
<el-table-column type="selection" width="55" align="center" />
|
||
<el-table-column label="信贷客户身份证号" align="center" prop="personId" width="180"/>
|
||
<el-table-column label="关系类型" align="center" prop="relationType" width="100">
|
||
<template slot-scope="scope">
|
||
<enum-tag type="relationType" :value="scope.row.relationType"/>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="关系人姓名" align="center" prop="relationName" :show-overflow-tooltip="true"/>
|
||
<el-table-column label="性别" align="center" prop="gender" width="80">
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.ccdi_indiv_gender" :value="scope.row.gender"/>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="手机号码" align="center" prop="mobilePhone1" :show-overflow-tooltip="true"/>
|
||
<el-table-column label="状态" align="center" prop="status" width="80">
|
||
<template slot-scope="scope">
|
||
<el-tag :type="scope.row.status === 1 ? 'success' : 'danger'">
|
||
{{ scope.row.status === 1 ? '有效' : '无效' }}
|
||
</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="创建时间" align="center" prop="createTime" width="160">
|
||
<template slot-scope="scope">
|
||
<span>{{ parseTime(scope.row.createTime) }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
|
||
<template slot-scope="scope">
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-view"
|
||
@click="handleDetail(scope.row)"
|
||
v-hasPermi="['ccdi:custFmyRelation:query']"
|
||
>详情</el-button>
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-edit"
|
||
@click="handleUpdate(scope.row)"
|
||
v-hasPermi="['ccdi:custFmyRelation:edit']"
|
||
>编辑</el-button>
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-delete"
|
||
@click="handleDelete(scope.row)"
|
||
v-hasPermi="['ccdi:custFmyRelation:remove']"
|
||
>删除</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
|
||
<pagination
|
||
v-show="total>0"
|
||
:total="total"
|
||
:page.sync="queryParams.pageNum"
|
||
:limit.sync="queryParams.pageSize"
|
||
@pagination="getList"
|
||
/>
|
||
|
||
<!-- 添加或修改对话框 -->
|
||
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
||
<el-form ref="form" :model="form" :rules="rules" label-width="140px">
|
||
<el-divider content-position="left">基本信息</el-divider>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="信贷客户身份证号" prop="personId">
|
||
<el-input
|
||
v-model="form.personId"
|
||
placeholder="请输入信贷客户身份证号"
|
||
:disabled="!isAdd"
|
||
maxlength="18"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="关系类型" prop="relationType">
|
||
<el-select v-model="form.relationType" placeholder="请选择关系类型" style="width: 100%">
|
||
<el-option
|
||
v-for="item in relationTypeOptions"
|
||
:key="item.value"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="关系人姓名" prop="relationName">
|
||
<el-input v-model="form.relationName" placeholder="请输入关系人姓名" maxlength="100" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="性别" prop="gender">
|
||
<el-select v-model="form.gender" placeholder="请选择性别" style="width: 100%">
|
||
<el-option
|
||
v-for="dict in dict.type.ccdi_indiv_gender"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="关系人证件类型" prop="relationCertType">
|
||
<el-select v-model="form.relationCertType" placeholder="请选择证件类型" style="width: 100%">
|
||
<el-option
|
||
v-for="item in certTypeOptions"
|
||
:key="item.value"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="关系人证件号码" prop="relationCertNo">
|
||
<el-input v-model="form.relationCertNo" placeholder="请输入证件号码" maxlength="100" />
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="出生日期" prop="birthDate">
|
||
<el-date-picker
|
||
v-model="form.birthDate"
|
||
type="date"
|
||
placeholder="选择日期"
|
||
value-format="yyyy-MM-dd"
|
||
style="width: 100%"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="手机号码1" prop="mobilePhone1">
|
||
<el-input v-model="form.mobilePhone1" placeholder="请输入手机号码1" maxlength="20" />
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="手机号码2" prop="mobilePhone2">
|
||
<el-input v-model="form.mobilePhone2" placeholder="请输入手机号码2" maxlength="20" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="微信名称1" prop="wechatNo1">
|
||
<el-input v-model="form.wechatNo1" placeholder="请输入微信名称1" maxlength="50" />
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="微信名称2" prop="wechatNo2">
|
||
<el-input v-model="form.wechatNo2" placeholder="请输入微信名称2" maxlength="50" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="微信名称3" prop="wechatNo3">
|
||
<el-input v-model="form.wechatNo3" placeholder="请输入微信名称3" maxlength="50" />
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="状态" prop="status" v-if="!isAdd">
|
||
<el-radio-group v-model="form.status">
|
||
<el-radio :label="1">有效</el-radio>
|
||
<el-radio :label="0">无效</el-radio>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12" v-if="!isAdd">
|
||
<!-- 占位,保持布局对齐 -->
|
||
</el-col>
|
||
</el-row>
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="生效日期" prop="effectiveDate">
|
||
<el-date-picker
|
||
v-model="form.effectiveDate"
|
||
type="date"
|
||
placeholder="选择日期"
|
||
value-format="yyyy-MM-dd"
|
||
style="width: 100%"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="失效日期" prop="invalidDate">
|
||
<el-date-picker
|
||
v-model="form.invalidDate"
|
||
type="date"
|
||
placeholder="选择日期"
|
||
value-format="yyyy-MM-dd"
|
||
style="width: 100%"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-form-item label="详细联系地址" prop="contactAddress">
|
||
<el-input v-model="form.contactAddress" type="textarea" :rows="2" placeholder="请输入详细联系地址" />
|
||
</el-form-item>
|
||
<el-form-item label="关系详细描述" prop="relationDesc">
|
||
<el-input v-model="form.relationDesc" type="textarea" :rows="2" placeholder="请输入关系详细描述" />
|
||
</el-form-item>
|
||
<el-form-item label="备注" prop="remark">
|
||
<el-input v-model="form.remark" type="textarea" :rows="3" placeholder="请输入备注" />
|
||
</el-form-item>
|
||
</el-form>
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button @click="cancel">取消</el-button>
|
||
<el-button type="primary" @click="submitForm">确定</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
|
||
<!-- 详情对话框 -->
|
||
<el-dialog title="信贷客户家庭关系详情" :visible.sync="detailOpen" width="800px" append-to-body>
|
||
<div class="detail-container">
|
||
<el-divider content-position="left">基本信息</el-divider>
|
||
<el-descriptions :column="2" border>
|
||
<el-descriptions-item label="信贷客户身份证号">{{ relationDetail.personId || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="关系类型">
|
||
<enum-tag type="relationType" :value="relationDetail.relationType"/>
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="关系人姓名">{{ relationDetail.relationName || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="性别">
|
||
<dict-tag :options="dict.type.ccdi_indiv_gender" :value="relationDetail.gender"/>
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="关系人证件类型">
|
||
<enum-tag type="certType" :value="relationDetail.relationCertType"/>
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="关系人证件号码" :span="2">{{ relationDetail.relationCertNo || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="出生日期">{{ relationDetail.birthDate || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="手机号码1">{{ relationDetail.mobilePhone1 || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="手机号码2">{{ relationDetail.mobilePhone2 || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="微信名称1">{{ relationDetail.wechatNo1 || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="微信名称2">{{ relationDetail.wechatNo2 || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="微信名称3">{{ relationDetail.wechatNo3 || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="详细联系地址" :span="2">{{ relationDetail.contactAddress || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="关系详细描述" :span="2">{{ relationDetail.relationDesc || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="生效日期">{{ relationDetail.effectiveDate || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="失效日期">{{ relationDetail.invalidDate || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="状态">
|
||
<el-tag :type="relationDetail.status === 1 ? 'success' : 'danger'">
|
||
{{ relationDetail.status === 1 ? '有效' : '无效' }}
|
||
</el-tag>
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="数据来源">{{ relationDetail.dataSource || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="备注" :span="2">{{ relationDetail.remark || '-' }}</el-descriptions-item>
|
||
</el-descriptions>
|
||
|
||
<el-divider content-position="left">审计信息</el-divider>
|
||
<el-descriptions :column="2" border>
|
||
<el-descriptions-item label="创建时间">
|
||
{{ relationDetail.createTime ? parseTime(relationDetail.createTime) : '-' }}
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="创建人">{{ relationDetail.createdBy || '-' }}</el-descriptions-item>
|
||
<el-descriptions-item label="更新时间">
|
||
{{ relationDetail.updateTime ? parseTime(relationDetail.updateTime) : '-' }}
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="更新人">{{ relationDetail.updatedBy || '-' }}</el-descriptions-item>
|
||
</el-descriptions>
|
||
</div>
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button @click="detailOpen = false" icon="el-icon-close">关 闭</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
|
||
<!-- 导入对话框 -->
|
||
<el-dialog
|
||
:title="upload.title"
|
||
:visible.sync="upload.open"
|
||
width="400px"
|
||
append-to-body
|
||
@close="handleImportDialogClose"
|
||
>
|
||
<el-upload
|
||
ref="upload"
|
||
:limit="1"
|
||
accept=".xlsx, .xls"
|
||
:headers="upload.headers"
|
||
:action="upload.url"
|
||
:disabled="upload.isUploading"
|
||
:on-progress="handleFileUploadProgress"
|
||
:on-success="handleFileSuccess"
|
||
:auto-upload="false"
|
||
drag
|
||
>
|
||
<i class="el-icon-upload"></i>
|
||
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
||
<div class="el-upload__tip" slot="tip">
|
||
<el-link type="primary" :underline="false" style="font-size: 12px; vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
|
||
</div>
|
||
<div class="el-upload__tip" slot="tip">
|
||
<span>仅允许导入"xls"或"xlsx"格式文件。</span>
|
||
</div>
|
||
</el-upload>
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button type="primary" @click="submitFileForm" :loading="upload.isUploading">确 定</el-button>
|
||
<el-button @click="upload.open = false" :disabled="upload.isUploading">取 消</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
|
||
<!-- 导入失败记录对话框 -->
|
||
<el-dialog
|
||
title="导入失败记录"
|
||
:visible.sync="failureDialogVisible"
|
||
width="1200px"
|
||
append-to-body
|
||
>
|
||
<el-alert
|
||
v-if="lastImportInfo"
|
||
:title="lastImportInfo"
|
||
type="info"
|
||
:closable="false"
|
||
style="margin-bottom: 15px"
|
||
/>
|
||
|
||
<el-table :data="failureList" v-loading="failureLoading">
|
||
<el-table-column label="信贷客户身份证号" prop="personId" align="center" width="180"/>
|
||
<el-table-column label="关系类型" prop="relationType" align="center" width="100"/>
|
||
<el-table-column label="关系人姓名" prop="relationName" align="center" width="120"/>
|
||
<el-table-column label="失败原因" prop="errorMessage" align="center" min-width="200" :show-overflow-tooltip="true" />
|
||
</el-table>
|
||
|
||
<pagination
|
||
v-show="failureTotal > 0"
|
||
:total="failureTotal"
|
||
:page.sync="failureQueryParams.pageNum"
|
||
:limit.sync="failureQueryParams.pageSize"
|
||
@pagination="getFailureList"
|
||
/>
|
||
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button @click="failureDialogVisible = false">关闭</el-button>
|
||
<el-button type="danger" plain @click="clearImportHistory">清除历史记录</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import {
|
||
addRelation,
|
||
delRelation,
|
||
getImportFailures,
|
||
getImportStatus,
|
||
getRelation,
|
||
listRelation,
|
||
updateRelation
|
||
} from "@/api/ccdiCustFmyRelation";
|
||
import {getToken} from "@/utils/auth";
|
||
import EnumTag from '@/components/EnumTag'
|
||
|
||
const STORAGE_KEY = 'cust_fmy_relation_import_last_task';
|
||
|
||
export default {
|
||
name: "CustFmyRelation",
|
||
dicts: ['ccdi_indiv_gender'],
|
||
components: {
|
||
EnumTag
|
||
},
|
||
data() {
|
||
return {
|
||
// 枚举选项
|
||
relationTypeOptions: [],
|
||
certTypeOptions: [],
|
||
// 遮罩层
|
||
loading: true,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 总条数
|
||
total: 0,
|
||
// 信贷客户家庭关系表格数据
|
||
relationList: [],
|
||
// 弹出层标题
|
||
title: "",
|
||
// 是否显示弹出层
|
||
open: false,
|
||
// 是否显示详情弹出层
|
||
detailOpen: false,
|
||
// 信贷客户家庭关系详情
|
||
relationDetail: {},
|
||
// 是否为新增操作
|
||
isAdd: false,
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 10,
|
||
personId: null,
|
||
relationType: null,
|
||
relationName: null,
|
||
status: null
|
||
},
|
||
// 表单参数
|
||
form: {},
|
||
// 表单校验
|
||
rules: {
|
||
personId: [
|
||
{ required: true, message: "信贷客户身份证号不能为空", trigger: "blur" },
|
||
{ pattern: /^[1-9]\d{5}(18|19|20)\d{2}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}[\dXx]$/, message: "请输入正确的18位身份证号", trigger: "blur" }
|
||
],
|
||
relationType: [
|
||
{ required: true, message: "关系类型不能为空", trigger: "change" }
|
||
],
|
||
relationName: [
|
||
{ required: true, message: "关系人姓名不能为空", trigger: "blur" },
|
||
{ min: 2, max: 50, message: "关系人姓名长度在2到50个字符", trigger: "blur" },
|
||
{ pattern: /^[\u4e00-\u9fa5a-zA-Z·]+$/, message: "姓名只能包含中文、英文和·", trigger: "blur" }
|
||
],
|
||
gender: [
|
||
{ required: true, message: "性别不能为空", trigger: "change" }
|
||
],
|
||
relationCertType: [
|
||
{ required: true, message: "关系人证件类型不能为空", trigger: "change" }
|
||
],
|
||
relationCertNo: [
|
||
{ required: true, message: "关系人证件号码不能为空", trigger: "blur" },
|
||
{ validator: this.validateCertNo, trigger: "blur" }
|
||
],
|
||
mobilePhone1: [
|
||
{ pattern: /^1[3-9]\d{9}$/, message: "请输入正确的手机号码", trigger: "blur" }
|
||
],
|
||
mobilePhone2: [
|
||
{ pattern: /^1[3-9]\d{9}$/, message: "请输入正确的手机号码", trigger: "blur" }
|
||
],
|
||
wechatNo1: [
|
||
{ max: 50, message: "微信名称不能超过50个字符", trigger: "blur" }
|
||
],
|
||
wechatNo2: [
|
||
{ max: 50, message: "微信名称不能超过50个字符", trigger: "blur" }
|
||
],
|
||
wechatNo3: [
|
||
{ max: 50, message: "微信名称不能超过50个字符", trigger: "blur" }
|
||
],
|
||
contactAddress: [
|
||
{ max: 200, message: "详细联系地址不能超过200个字符", trigger: "blur" }
|
||
],
|
||
relationDesc: [
|
||
{ max: 500, message: "关系详细描述不能超过500个字符", trigger: "blur" }
|
||
],
|
||
birthDate: [
|
||
{ validator: this.validateBirthDate, trigger: "change" }
|
||
],
|
||
effectiveDate: [
|
||
{ validator: this.validateDateRange, trigger: "change" }
|
||
],
|
||
invalidDate: [
|
||
{ validator: this.validateDateRange, trigger: "change" }
|
||
]
|
||
},
|
||
// 导入参数
|
||
upload: {
|
||
// 是否显示弹出层
|
||
open: false,
|
||
// 弹出层标题
|
||
title: "",
|
||
// 是否禁用上传
|
||
isUploading: false,
|
||
// 设置上传的请求头部
|
||
headers: { Authorization: "Bearer " + getToken() },
|
||
// 上传的地址
|
||
url: process.env.VUE_APP_BASE_API + "/ccdi/custFmyRelation/importData"
|
||
},
|
||
// 导入轮询定时器
|
||
importPollingTimer: null,
|
||
// 是否显示查看失败记录按钮
|
||
showFailureButton: false,
|
||
// 当前导入任务ID
|
||
currentTaskId: null,
|
||
// 失败记录对话框
|
||
failureDialogVisible: false,
|
||
failureList: [],
|
||
failureLoading: false,
|
||
failureTotal: 0,
|
||
failureQueryParams: {
|
||
pageNum: 1,
|
||
pageSize: 10
|
||
}
|
||
};
|
||
},
|
||
computed: {
|
||
/**
|
||
* 上次导入信息摘要
|
||
*/
|
||
lastImportInfo() {
|
||
const savedTask = this.getImportTaskFromStorage();
|
||
if (savedTask && savedTask.totalCount) {
|
||
return `导入时间: ${this.parseTime(savedTask.saveTime)} | 总数: ${savedTask.totalCount}条 | 成功: ${savedTask.successCount}条 | 失败: ${savedTask.failureCount}条`;
|
||
}
|
||
return '';
|
||
}
|
||
},
|
||
created() {
|
||
this.getList();
|
||
this.restoreImportState();
|
||
this.loadEnumOptions();
|
||
},
|
||
beforeDestroy() {
|
||
if (this.importPollingTimer) {
|
||
clearInterval(this.importPollingTimer);
|
||
this.importPollingTimer = null;
|
||
}
|
||
},
|
||
methods: {
|
||
/**
|
||
* 加载枚举选项
|
||
*/
|
||
async loadEnumOptions() {
|
||
try {
|
||
this.relationTypeOptions = await this.$store.dispatch('ccdiEnum/getRelationTypeOptions')
|
||
this.certTypeOptions = await this.$store.dispatch('ccdiEnum/getCertTypeOptions')
|
||
} catch (error) {
|
||
console.error('加载枚举选项失败:', error)
|
||
}
|
||
},
|
||
/**
|
||
* 校验证件号码
|
||
* 根据证件类型进行不同的校验
|
||
*/
|
||
validateCertNo(rule, value, callback) {
|
||
if (!value) {
|
||
callback();
|
||
return;
|
||
}
|
||
|
||
const certType = this.form.relationCertType;
|
||
|
||
if (certType === '身份证') {
|
||
// 18位身份证号码校验
|
||
const pattern = /^[1-9]\d{5}(18|19|20)\d{2}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}[\dXx]$/;
|
||
if (!pattern.test(value)) {
|
||
callback(new Error('请输入正确的18位身份证号码'));
|
||
return;
|
||
}
|
||
// 校验身份证校验位
|
||
const weights = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
|
||
const checkCodes = ['1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'];
|
||
let sum = 0;
|
||
for (let i = 0; i < 17; i++) {
|
||
sum += parseInt(value[i]) * weights[i];
|
||
}
|
||
const checkCode = checkCodes[sum % 11];
|
||
if (value[17].toUpperCase() !== checkCode) {
|
||
callback(new Error('身份证号码校验位错误'));
|
||
return;
|
||
}
|
||
} else if (certType === '护照') {
|
||
// 护照校验:字母开头,后跟数字,总长度6-20位
|
||
const pattern = /^[a-zA-Z][0-9a-zA-Z]{5,19}$/;
|
||
if (!pattern.test(value)) {
|
||
callback(new Error('护照号码格式不正确,应为字母开头的6-20位字符'));
|
||
return;
|
||
}
|
||
} else {
|
||
// 其他证件类型:基本长度校验
|
||
if (value.length < 6 || value.length > 50) {
|
||
callback(new Error('证件号码长度应在6-50位之间'));
|
||
return;
|
||
}
|
||
}
|
||
|
||
callback();
|
||
},
|
||
/**
|
||
* 校验出生日期
|
||
* 出生日期不能晚于当前日期
|
||
*/
|
||
validateBirthDate(rule, value, callback) {
|
||
if (!value) {
|
||
callback();
|
||
return;
|
||
}
|
||
|
||
const birthDate = new Date(value);
|
||
const today = new Date();
|
||
|
||
if (birthDate > today) {
|
||
callback(new Error('出生日期不能晚于当前日期'));
|
||
return;
|
||
}
|
||
|
||
// 校验年龄不能超过150岁
|
||
const maxBirthDate = new Date();
|
||
maxBirthDate.setFullYear(maxBirthDate.getFullYear() - 150);
|
||
if (birthDate < maxBirthDate) {
|
||
callback(new Error('出生日期不能早于150年前'));
|
||
return;
|
||
}
|
||
|
||
callback();
|
||
},
|
||
/**
|
||
* 校验生效日期和失效日期
|
||
* 失效日期不能早于生效日期
|
||
*/
|
||
validateDateRange(rule, value, callback) {
|
||
if (!value) {
|
||
callback();
|
||
return;
|
||
}
|
||
|
||
// 如果当前校验的是失效日期
|
||
if (rule.field === 'invalidDate' && this.form.effectiveDate) {
|
||
const effectiveDate = new Date(this.form.effectiveDate);
|
||
const invalidDate = new Date(value);
|
||
|
||
if (invalidDate < effectiveDate) {
|
||
callback(new Error('失效日期不能早于生效日期'));
|
||
return;
|
||
}
|
||
}
|
||
|
||
// 如果生效日期和失效日期都已填写,确保失效日期晚于生效日期
|
||
if (this.form.effectiveDate && this.form.invalidDate) {
|
||
const effectiveDate = new Date(this.form.effectiveDate);
|
||
const invalidDate = new Date(this.form.invalidDate);
|
||
|
||
if (invalidDate < effectiveDate) {
|
||
if (rule.field === 'effectiveDate') {
|
||
callback(new Error('生效日期不能晚于失效日期'));
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
|
||
callback();
|
||
},
|
||
/** 查询信贷客户家庭关系列表 */
|
||
getList() {
|
||
this.loading = true;
|
||
listRelation(this.queryParams).then(response => {
|
||
this.relationList = response.rows;
|
||
this.total = response.total;
|
||
this.loading = false;
|
||
});
|
||
},
|
||
/**
|
||
* 恢复导入状态
|
||
*/
|
||
restoreImportState() {
|
||
const savedTask = this.getImportTaskFromStorage();
|
||
if (!savedTask) {
|
||
this.showFailureButton = false;
|
||
this.currentTaskId = null;
|
||
return;
|
||
}
|
||
if (savedTask.hasFailures && savedTask.taskId) {
|
||
this.currentTaskId = savedTask.taskId;
|
||
this.showFailureButton = true;
|
||
}
|
||
},
|
||
/**
|
||
* 获取上次导入的提示信息
|
||
*/
|
||
getLastImportTooltip() {
|
||
const savedTask = this.getImportTaskFromStorage();
|
||
if (savedTask && savedTask.saveTime) {
|
||
const date = new Date(savedTask.saveTime);
|
||
const timeStr = this.parseTime(date, '{y}-{m}-{d} {h}:{i}');
|
||
return `上次导入: ${timeStr}`;
|
||
}
|
||
return '';
|
||
},
|
||
// 取消按钮
|
||
cancel() {
|
||
this.open = false;
|
||
this.reset();
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
id: null,
|
||
personId: null,
|
||
relationType: null,
|
||
relationName: null,
|
||
gender: null,
|
||
birthDate: null,
|
||
relationCertType: null,
|
||
relationCertNo: null,
|
||
mobilePhone1: null,
|
||
mobilePhone2: null,
|
||
wechatNo1: null,
|
||
wechatNo2: null,
|
||
wechatNo3: null,
|
||
contactAddress: null,
|
||
relationDesc: null,
|
||
effectiveDate: null,
|
||
invalidDate: null,
|
||
status: 1,
|
||
remark: null
|
||
};
|
||
this.resetForm("form");
|
||
},
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1;
|
||
this.getList();
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm("queryForm");
|
||
this.handleQuery();
|
||
},
|
||
// 多选框选中数据
|
||
handleSelectionChange(selection) {
|
||
this.ids = selection.map(item => item.id);
|
||
this.single = selection.length !== 1;
|
||
this.multiple = !selection.length;
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
this.reset();
|
||
this.open = true;
|
||
this.title = "添加信贷客户家庭关系";
|
||
this.isAdd = true;
|
||
},
|
||
/** 修改按钮操作 */
|
||
handleUpdate(row) {
|
||
this.reset();
|
||
const id = row.id || this.ids[0];
|
||
getRelation(id).then(response => {
|
||
this.form = response.data;
|
||
this.open = true;
|
||
this.title = "修改信贷客户家庭关系";
|
||
this.isAdd = false;
|
||
});
|
||
},
|
||
/** 详情按钮操作 */
|
||
handleDetail(row) {
|
||
const id = row.id;
|
||
getRelation(id).then(response => {
|
||
this.relationDetail = response.data;
|
||
this.detailOpen = true;
|
||
});
|
||
},
|
||
/** 提交按钮 */
|
||
submitForm() {
|
||
this.$refs["form"].validate(valid => {
|
||
if (valid) {
|
||
if (this.isAdd) {
|
||
addRelation(this.form).then(response => {
|
||
this.$modal.msgSuccess("新增成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
} else {
|
||
updateRelation(this.form).then(response => {
|
||
this.$modal.msgSuccess("修改成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
}
|
||
}
|
||
});
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const ids = row.id || this.ids;
|
||
this.$modal.confirm('是否确认删除该数据项?').then(function() {
|
||
return delRelation(ids);
|
||
}).then(() => {
|
||
this.getList();
|
||
this.$modal.msgSuccess("删除成功");
|
||
}).catch(() => {});
|
||
},
|
||
/** 导出按钮操作 */
|
||
handleExport() {
|
||
this.download('ccdi/custFmyRelation/export', {
|
||
...this.queryParams
|
||
}, `信贷客户家庭关系_${new Date().getTime()}.xlsx`);
|
||
},
|
||
/** 导入按钮操作 */
|
||
handleImport() {
|
||
this.upload.title = "信贷客户家庭关系数据导入";
|
||
this.upload.open = true;
|
||
},
|
||
/** 下载模板操作 */
|
||
importTemplate() {
|
||
this.download('ccdi/custFmyRelation/importTemplate', {}, `信贷客户家庭关系导入模板_${new Date().getTime()}.xlsx`);
|
||
},
|
||
// 文件上传中处理
|
||
handleFileUploadProgress(event, file, fileList) {
|
||
this.upload.isUploading = true;
|
||
},
|
||
// 文件上传成功处理
|
||
handleFileSuccess(response, file, fileList) {
|
||
this.upload.isUploading = false;
|
||
this.upload.open = false;
|
||
|
||
if (response.code === 200) {
|
||
if (!response.data || !response.data.taskId) {
|
||
this.$modal.msgError('导入任务创建失败:缺少任务ID');
|
||
this.upload.isUploading = false;
|
||
this.upload.open = true;
|
||
return;
|
||
}
|
||
|
||
const taskId = response.data.taskId;
|
||
|
||
if (this.importPollingTimer) {
|
||
clearInterval(this.importPollingTimer);
|
||
this.importPollingTimer = null;
|
||
}
|
||
|
||
this.clearImportTaskFromStorage();
|
||
|
||
this.saveImportTaskToStorage({
|
||
taskId: taskId,
|
||
status: 'PROCESSING',
|
||
timestamp: Date.now(),
|
||
hasFailures: false
|
||
});
|
||
|
||
this.showFailureButton = false;
|
||
this.currentTaskId = taskId;
|
||
|
||
this.$notify({
|
||
title: '导入任务已提交',
|
||
message: '正在后台处理中,处理完成后将通知您',
|
||
type: 'info',
|
||
duration: 3000
|
||
});
|
||
|
||
this.startImportStatusPolling(taskId);
|
||
} else {
|
||
this.$modal.msgError(response.msg);
|
||
}
|
||
},
|
||
/** 开始轮询导入状态 */
|
||
startImportStatusPolling(taskId) {
|
||
let pollCount = 0;
|
||
const maxPolls = 150;
|
||
|
||
this.importPollingTimer = setInterval(async () => {
|
||
try {
|
||
pollCount++;
|
||
|
||
if (pollCount > maxPolls) {
|
||
clearInterval(this.importPollingTimer);
|
||
this.$modal.msgWarning('导入任务处理超时,请联系管理员');
|
||
return;
|
||
}
|
||
|
||
const response = await getImportStatus(taskId);
|
||
|
||
if (response.data && response.data.status !== 'PROCESSING') {
|
||
clearInterval(this.importPollingTimer);
|
||
this.handleImportComplete(response.data);
|
||
}
|
||
} catch (error) {
|
||
clearInterval(this.importPollingTimer);
|
||
this.$modal.msgError('查询导入状态失败: ' + error.message);
|
||
}
|
||
}, 2000);
|
||
},
|
||
/** 查询失败记录列表 */
|
||
getFailureList() {
|
||
this.failureLoading = true;
|
||
getImportFailures(
|
||
this.currentTaskId,
|
||
this.failureQueryParams.pageNum,
|
||
this.failureQueryParams.pageSize
|
||
).then(response => {
|
||
this.failureList = response.rows;
|
||
this.failureTotal = response.total;
|
||
this.failureLoading = false;
|
||
}).catch(error => {
|
||
this.failureLoading = false;
|
||
if (error.response && error.response.status === 404) {
|
||
this.$modal.msgWarning('导入记录已过期,无法查看失败记录');
|
||
this.clearImportTaskFromStorage();
|
||
this.showFailureButton = false;
|
||
this.currentTaskId = null;
|
||
this.failureDialogVisible = false;
|
||
} else {
|
||
this.$modal.msgError('查询失败记录失败');
|
||
}
|
||
});
|
||
},
|
||
/** 查看导入失败记录 */
|
||
viewImportFailures() {
|
||
this.failureDialogVisible = true;
|
||
this.getFailureList();
|
||
},
|
||
/** 处理导入完成 */
|
||
handleImportComplete(statusResult) {
|
||
this.saveImportTaskToStorage({
|
||
taskId: statusResult.taskId,
|
||
status: statusResult.status,
|
||
hasFailures: statusResult.failureCount > 0,
|
||
totalCount: statusResult.totalCount,
|
||
successCount: statusResult.successCount,
|
||
failureCount: statusResult.failureCount
|
||
});
|
||
|
||
if (statusResult.status === 'SUCCESS') {
|
||
this.$notify({
|
||
title: '导入完成',
|
||
message: `全部成功!共导入${statusResult.totalCount}条数据`,
|
||
type: 'success',
|
||
duration: 5000
|
||
});
|
||
this.showFailureButton = false;
|
||
this.getList();
|
||
} else if (statusResult.failureCount > 0) {
|
||
this.$notify({
|
||
title: '导入完成',
|
||
message: `成功${statusResult.successCount}条,失败${statusResult.failureCount}条`,
|
||
type: 'warning',
|
||
duration: 5000
|
||
});
|
||
this.showFailureButton = true;
|
||
this.currentTaskId = statusResult.taskId;
|
||
this.getList();
|
||
}
|
||
},
|
||
// 提交上传文件
|
||
submitFileForm() {
|
||
this.$refs.upload.submit();
|
||
},
|
||
// 关闭导入对话框
|
||
handleImportDialogClose() {
|
||
this.upload.isUploading = false;
|
||
this.$refs.upload.clearFiles();
|
||
},
|
||
/**
|
||
* 保存导入任务到localStorage
|
||
*/
|
||
saveImportTaskToStorage(taskData) {
|
||
try {
|
||
const data = {
|
||
...taskData,
|
||
saveTime: Date.now()
|
||
};
|
||
localStorage.setItem(STORAGE_KEY, JSON.stringify(data));
|
||
} catch (error) {
|
||
console.error('保存导入任务状态失败:', error);
|
||
}
|
||
},
|
||
/**
|
||
* 从localStorage读取导入任务
|
||
*/
|
||
getImportTaskFromStorage() {
|
||
try {
|
||
const data = localStorage.getItem(STORAGE_KEY);
|
||
if (!data) return null;
|
||
|
||
const task = JSON.parse(data);
|
||
if (!task || !task.taskId) {
|
||
this.clearImportTaskFromStorage();
|
||
return null;
|
||
}
|
||
|
||
const sevenDays = 7 * 24 * 60 * 60 * 1000;
|
||
if (Date.now() - task.saveTime > sevenDays) {
|
||
this.clearImportTaskFromStorage();
|
||
return null;
|
||
}
|
||
|
||
return task;
|
||
} catch (error) {
|
||
console.error('读取导入任务状态失败:', error);
|
||
this.clearImportTaskFromStorage();
|
||
return null;
|
||
}
|
||
},
|
||
/**
|
||
* 清除导入历史记录
|
||
*/
|
||
clearImportHistory() {
|
||
this.$confirm('确认清除上次导入记录?', '提示', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
}).then(() => {
|
||
this.clearImportTaskFromStorage();
|
||
this.showFailureButton = false;
|
||
this.currentTaskId = null;
|
||
this.failureDialogVisible = false;
|
||
this.$message.success('已清除');
|
||
}).catch(() => {});
|
||
},
|
||
/**
|
||
* 清除localStorage中的导入任务
|
||
*/
|
||
clearImportTaskFromStorage() {
|
||
try {
|
||
localStorage.removeItem(STORAGE_KEY);
|
||
} catch (error) {
|
||
console.error('清除导入任务状态失败:', error);
|
||
}
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style scoped>
|
||
.detail-container {
|
||
padding: 0 20px;
|
||
}
|
||
</style>
|