Compare commits

...

3 Commits

Author SHA1 Message Date
Mrx
e48a8ee4ed f 2026-04-24 11:48:27 +08:00
1c67d7fbc9 f 2026-04-24 11:20:27 +08:00
6d5ce26d65 f 2026-04-24 11:20:25 +08:00
5 changed files with 63 additions and 17 deletions

View File

@@ -162,6 +162,8 @@ export function useInquireForm(featureRef) {
toc_EnterpriseRelation: ["idCard"],
toc_BankcardFourFactors: ["mobile", "idCard", "bankCard", "name"],
toc_BankcardBlacklist: ["mobile", "idCard", "name", "bankCard"],
backgroundcheck: ["name", "idCard", "mobile"],
};
// 当前 feature 名称

View File

@@ -297,6 +297,49 @@ export const inquireCategoryConfig = {
},
],
},
/** 更多报告:与 InquireForm loadProductBackground 中已配查询页背景的产品一致 */
moreReport: {
title: "更多报告",
banner: "fxpg_banner.png",
items: [
{
name: "小微企业",
feature: "companyinfo",
desc: "小微企业相关风险评估",
icon: "renqiguanxi.svg",
},
{
name: "贷前风险",
feature: "preloanbackgroundcheck",
desc: "贷前背景与信用筛查",
icon: "jiedaishenqing.svg",
},
{
name: "个人大数据",
feature: "personalData",
desc: "个人综合与谛听多维等风险报告",
icon: "fengxianxingwei.svg",
},
{
name: "婚恋风险",
feature: "marriage",
desc: "多维度婚恋对象风险分析",
icon: "hunyinzhuangtai.svg",
},
{
name: "家政风险",
feature: "homeservice",
desc: "家政服务人员背景与风险核查",
icon: "beijianguanrenyuan.svg",
},
{
name: "入职风险",
feature: "backgroundcheck",
desc: "入职背景综合核查",
icon: "sifasheyu.svg",
},
],
},
/** 婚姻状况 */
marriageStatus: {
title: "婚姻状况",

View File

@@ -82,6 +82,7 @@ defineExpose({
});
</script>
<template>
<div class="card">
<div class="status-info flex flex-col items-center">

View File

@@ -63,17 +63,15 @@ const currentStatus = !actualData
:class="`status-label rounded-full px-6 py-3 text-center font-bold shadow-md ${currentStatus.bgClass} ${currentStatus.textClass}`">
{{ currentStatus.text }}
</div>
<p v-html="currentStatus.description" class="status-description mt-3 text-sm text-gray-600"></p>
</div>
</div>
</template>
<!-- <div v-if="currentStatus.opDate" class="op-date-container mt-4 px-4 py-2 bg-blue-50 rounded-lg border border-blue-200">
<div v-if="currentStatus.opDate" class="op-date-container mt-4 px-4 py-2 bg-blue-50 rounded-lg border border-blue-200">
<p class="op-date text-sm font-medium text-blue-700">
登记日期{{ currentStatus.opDate }}
</p>
</div> -->
</div>
<p v-html="currentStatus.description" class="status-description mt-3 text-sm text-gray-600"></p>
</div>
</div>
</template>
<style lang="scss" scoped>
.status-info {

View File

@@ -60,6 +60,8 @@ function toInquire(name) {
router.push(`/inquire/category/vehicle`);
} else if (name === "Verify") {
router.push(`/inquire/category/verify`);
} else if (name === "MoreReport") {
router.push(`/inquire/category/moreReport`);
} else if (name === "Promote") {
router.push(`/agent/promote`);
} else {
@@ -116,17 +118,16 @@ function toPromote() {
</div>
<div class="relative flex flex-col cursor-pointer rounded-bl-[35px] rounded-br-lg rounded-tl-[35px] rounded-tr-lg bg-white px-4 py-6 shadow-lg"
@click="toInquire('VehiclesUnderName')">
@click="toInquire('MoreReport')">
<div class="min-h-18 gap-2 bg-white px-1">
<div class="mb-2 flex justify-around">
<img class="h-12 w-12 flex-shrink-0" src="@/assets/images/icon_index_chacheliang.svg"
alt="车辆查询图标" />
<img class="h-12 w-12 flex-shrink-0" src="@/assets/images/icon_3.png" alt="更多报告图标" />
<div class="mt-1 max-w-max flex-shrink-0 text-left text-lg text-gray-600 font-bold">
车辆查询
更多报告
</div>
</div>
<div class="max-w-max text-left text-xs text-gray-600">
查询个人名下所有车辆信息包括车辆品牌型号车牌号登记时间等详细信息
基于多维度数据整合准确评估潜在风险的全面报告
</div>
</div>
</div>
@@ -159,16 +160,17 @@ function toPromote() {
</div>
</div>
<div class="relative flex flex-col cursor-pointer rounded-bl-lg rounded-br-[35px] rounded-tl-lg rounded-tr-[35px] bg-white px-4 py-6 shadow-lg"
@click="toInquire('Promote')">
@click="toInquire('VehiclesUnderName')">
<div class="min-h-18 gap-2 bg-white px-1">
<div class="mb-2 flex justify-around">
<img class="h-12 w-12 flex-shrink-0" src="@/assets/images/icon_3.png" alt="推广报告图标" />
<div class="mt-1 max-w-max flex-shrink-0 text-left text-lg text-gray-600 font-bold">
推广报告
车辆查询
</div>
<img class="h-12 w-12 flex-shrink-0" src="@/assets/images/icon_index_chacheliang.svg"
alt="车辆查询图标" />
</div>
<div class="max-w-max text-left text-xs text-gray-600">
基于多维度数据整合准确评估潜在风险的全面报告
查询个人名下所有车辆信息包括车辆品牌型号车牌号登记时间等详细信息
</div>
</div>
</div>