Compare commits

...

5 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
Mrx
955069693a Merge branch 'main' of http://1.117.67.95:3000/team/tyc-webview-v2 2026-03-21 11:04:07 +08:00
Mrx
ccf1e47bee f 2026-03-21 11:04:05 +08:00
6 changed files with 58 additions and 10 deletions

View File

@@ -676,6 +676,7 @@ const featureRiskLevels = {
'IVYZ9A2B': 3, // 学历信息
'IVYZ3P9M': 3, // 学历信息查询(实时版)
// 📊 复合报告类 - 按子模块动态计算
'DWBG8B4D': 0, // 谛听多维报告(由子模块计算)
'DWBG6A2C': 0, // 司南报告(由子模块计算)

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

@@ -69,7 +69,6 @@ const currentStatus = !actualData
</p>
</div>
<p v-html="currentStatus.description" class="status-description mt-3 text-sm text-gray-600"></p>
</div>
</div>
</template>

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>