t
This commit is contained in:
@@ -4,12 +4,12 @@
|
||||
<p class="my-2">海南天远大数据科技有限公司:</p>
|
||||
<p class="indent-[2em]">
|
||||
<!-- <span class="font-bold"> {{ signature ? userData.name : "____________" }}</span> -->
|
||||
本人________拟向贵司申请大数据分析报告查询业务,贵司需要了解本人相关状况,用于查询大数据分析报告,因此本人同意向贵司提供本人的姓名和手机号等个人信息,并同意贵司向第三方(包括但不限于西部数据交易有限公司)传送上述信息。第三方将使用上述信息核实信息真实情况,查询信用记录,并生成报告。
|
||||
本人________拟向贵司申请大数据分析报告查询业务,贵司需要了解本人相关状况,用于查询大数据分析报告,因此本人同意向贵司提供本人的姓名和手机号等个人信息,并同意贵司向第三方传送上述信息。第三方将使用上述信息核实信息真实情况,查询信用记录,并生成报告。
|
||||
</p>
|
||||
<p class="mt-2 font-bold">授权内容如下:</p>
|
||||
<ol class="list-decimal pl-6">
|
||||
<li>
|
||||
贵司向依法成立的第三方服务商(包括但不限于西部数据交易有限公司)根据本人提交的信息进行核实,并有权通过前述第三方服务机构查询、使用本人的身份信息、设备信息、运营商信息等,查询本人信息(包括但不限于学历、婚姻、资产状况及对信息主体产生负面影响的不良信息),出具相关报告。
|
||||
贵司向依法成立的第三方服务商根据本人提交的信息进行核实,并有权通过前述第三方服务机构查询、使用本人的身份信息、设备信息、运营商信息等,查询本人信息(包括但不限于学历、婚姻、资产状况及对信息主体产生负面影响的不良信息),出具相关报告。
|
||||
</li>
|
||||
<li>
|
||||
依法成立的第三方服务商查询或核实、搜集、保存、处理、共享、使用(含合法业务应用)本人相关数据,且不再另行告知本人,但法律、法规、监管政策禁止的除外。
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<script setup>
|
||||
const router = useRouter();
|
||||
import { storeToRefs } from "pinia";
|
||||
import { showConfirmDialog } from "vant";
|
||||
import SectionTitle from "@/components/SectionTitle.vue";
|
||||
|
||||
const agentStore = useAgentStore();
|
||||
@@ -11,7 +12,25 @@ import loanCheckIcon from "@/assets/images/index/loan_check_bg.png";
|
||||
import marriageRiskIcon from "@/assets/images/index/marriage_risk_bg.png";
|
||||
import housekeepingRiskIcon from "@/assets/images/index/housekeeping_risk_bg.png";
|
||||
import preLoanRiskIcon from "@/assets/images/index/preloan_risk_bg.png";
|
||||
|
||||
function toInquire(name) {
|
||||
if (name === "marriage") {
|
||||
showConfirmDialog({
|
||||
title: "婚恋风险查询",
|
||||
message: "是否进入天远查进行婚恋查询?",
|
||||
confirmButtonText: "进入",
|
||||
cancelButtonText: "取消",
|
||||
})
|
||||
.then(() => {
|
||||
// 在当前标签页打开,不新开tab
|
||||
window.location.href = "https://www.tianyuancha.cn";
|
||||
})
|
||||
.catch(() => {
|
||||
// 取消则继续后续逻辑
|
||||
router.push(`/inquire/marriage`);
|
||||
});
|
||||
return; // 阻止继续跳转,等待 dialog 回调
|
||||
}
|
||||
router.push(`/inquire/${name}`);
|
||||
}
|
||||
function toInvitation() {
|
||||
@@ -76,7 +95,7 @@ const riskServices = ref([
|
||||
goColor: "#66cccc",
|
||||
},
|
||||
{
|
||||
title: "贷前背调",
|
||||
title: "贷前风险",
|
||||
name: "preloanbackgroundcheck",
|
||||
subtitle: "信用评估,放款无忧",
|
||||
bg: loanCheckIcon,
|
||||
@@ -143,7 +162,7 @@ const toBigData = () => {
|
||||
:style="`background: url(${service.bg}) no-repeat; background-size: cover; background-position: center;`"
|
||||
@click=" toInquire(service.name)">
|
||||
<div class="min-h-18 flex flex-col items-start px-1">
|
||||
<div class="mt-1 max-w-max text-left text-gray-600 font-bold text-md">
|
||||
<div class="mt-1 max-w-max text-left text-gray-600 font-bold">
|
||||
{{ service.title }}
|
||||
</div>
|
||||
<!-- <div class="max-w-max text-left text-xs text-gray-600">
|
||||
@@ -165,7 +184,7 @@ const toBigData = () => {
|
||||
:style="`background: url(${service.bg}) no-repeat; background-size: cover; background-position: center;`"
|
||||
@click="toInquire(service.name)">
|
||||
<div class="min-h-18 flex flex-col items-start px-1">
|
||||
<div class="mt-1 max-w-max text-left text-gray-600 font-bold text-sm">
|
||||
<div class="mt-1 max-w-max text-left text-gray-600 font-bold">
|
||||
{{ service.title }}
|
||||
</div>
|
||||
<!-- <div class="max-w-max text-left text-xs text-gray-600">
|
||||
|
||||
Reference in New Issue
Block a user