This commit is contained in:
2026-04-24 11:20:27 +08:00
parent 6d5ce26d65
commit 1c67d7fbc9
2 changed files with 54 additions and 9 deletions

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

@@ -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>