From 1eaf3e810ed0b74e61fe1ee04f14a4b007caf2d4 Mon Sep 17 00:00:00 2001 From: liangzai <2440983361@qq.com> Date: Fri, 2 May 2025 14:52:22 +0800 Subject: [PATCH] t --- index.html | 4 +- package.json | 15 +- pnpm-lock.yaml | 20 +- src/App.vue | 1 - src/assets/images/dqfx_icon.svg | 1 + src/assets/images/jzfx_icon.svg | 1 + src/assets/images/rqgxpro_icon.svg | 1 + src/assets/images/rzfx_icon.svg | 1 + src/assets/images/zlfx_icon.svg | 1 + src/components/Authorization.vue | 26 +- src/components/BaseReport.vue | 904 +++++ src/components/GaugeChart.vue | 255 ++ src/components/LButtonGroup.vue | 124 +- src/components/LEmpty.vue | 23 +- src/components/LRemark.vue | 47 + src/composables/useApiFetch.js | 10 +- src/composables/useHttp.js | 27 - src/composables/useMenuItems.js | 85 +- src/layouts/HomeLayout.vue | 51 +- src/layouts/PageLayout.vue | 43 +- src/router/index.js | 9 +- src/ui/CBad.vue | 549 +-- src/ui/CBankLoanApplication.vue | 1939 +++++++++-- src/ui/CBankLoanBehavior copy.vue | 1022 ++++++ src/ui/CBankLoanBehavior.vue | 1088 +++++- src/ui/CBehaviorRiskScan.vue | 746 ++++ src/ui/CDualMarriage.vue | 39 +- src/ui/CG11BJ06.vue | 931 +++++ src/ui/CG29BJ05.vue | 320 ++ src/ui/CIDV044.vue | 41 +- src/ui/CMOB035.vue | 5 + src/ui/CMarriage.vue | 26 +- src/ui/CPersonEnterprisePro/index.vue | 85 + .../sections/Investment.vue | 499 +++ .../CPersonEnterprisePro/sections/Lawsuit.vue | 3030 +++++++++++++++++ .../sections/SeniorExecutive.vue | 461 +++ src/ui/CRelatedEnterprises.vue | 4 +- src/ui/CSpecialList.vue | 1537 +++++++-- src/ui/CTabs.vue | 373 +- src/views/Authorization.vue | 26 +- src/views/Example copy.vue | 261 -- src/views/Example.vue | 1217 +++++-- src/views/HistoryQuery.vue | 110 +- src/views/Inquire.vue | 575 +++- src/views/Me.vue | 2 +- src/views/OthersAuthorization.vue | 85 + src/views/Report.vue | 1209 +++++-- src/views/index.vue | 300 +- src/views/list_lawsuit.vue | 91 +- src/views/list_risk.vue | 70 +- vite.config.js | 4 +- 51 files changed, 15973 insertions(+), 2321 deletions(-) create mode 100644 src/assets/images/dqfx_icon.svg create mode 100644 src/assets/images/jzfx_icon.svg create mode 100644 src/assets/images/rqgxpro_icon.svg create mode 100644 src/assets/images/rzfx_icon.svg create mode 100644 src/assets/images/zlfx_icon.svg create mode 100644 src/components/BaseReport.vue create mode 100644 src/components/GaugeChart.vue create mode 100644 src/components/LRemark.vue delete mode 100644 src/composables/useHttp.js create mode 100644 src/ui/CBankLoanBehavior copy.vue create mode 100644 src/ui/CBehaviorRiskScan.vue create mode 100644 src/ui/CG11BJ06.vue create mode 100644 src/ui/CG29BJ05.vue create mode 100644 src/ui/CPersonEnterprisePro/index.vue create mode 100644 src/ui/CPersonEnterprisePro/sections/Investment.vue create mode 100644 src/ui/CPersonEnterprisePro/sections/Lawsuit.vue create mode 100644 src/ui/CPersonEnterprisePro/sections/SeniorExecutive.vue delete mode 100644 src/views/Example copy.vue create mode 100644 src/views/OthersAuthorization.vue diff --git a/index.html b/index.html index 4e5dacf..e731391 100644 --- a/index.html +++ b/index.html @@ -10,11 +10,11 @@ 天远查 - 婚恋评估、司法涉诉查询、婚姻状态、判决书查询工具 = 6'} - caniuse-lite@1.0.30001680: - resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==} + caniuse-lite@1.0.30001713: + resolution: {integrity: sha512-wCIWIg+A4Xr7NfhTuHdX+/FKh3+Op3LBbSp2N5Pfx6T/LhdQy3GTyoTg48BReaW/MyMNZAkTadsBtai3ldWK0Q==} chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} @@ -2222,7 +2222,7 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.49): dependencies: browserslist: 4.24.2 - caniuse-lite: 1.0.30001680 + caniuse-lite: 1.0.30001713 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -2253,7 +2253,7 @@ snapshots: browserslist@4.24.2: dependencies: - caniuse-lite: 1.0.30001680 + caniuse-lite: 1.0.30001713 electron-to-chromium: 1.5.63 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.2) @@ -2266,7 +2266,7 @@ snapshots: camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001680: {} + caniuse-lite@1.0.30001713: {} chokidar@3.6.0: dependencies: diff --git a/src/App.vue b/src/App.vue index 4c0d9a7..3a79e4b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,7 +8,6 @@ const RefreshToken = async () => { const token = localStorage.getItem("token") const refreshAfter = localStorage.getItem("refreshAfter") const currentTime = new Date().getTime(); - // 1. 如果没有 token,直接返回 if (!token) { return; diff --git a/src/assets/images/dqfx_icon.svg b/src/assets/images/dqfx_icon.svg new file mode 100644 index 0000000..e3af8f9 --- /dev/null +++ b/src/assets/images/dqfx_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/jzfx_icon.svg b/src/assets/images/jzfx_icon.svg new file mode 100644 index 0000000..d6242c6 --- /dev/null +++ b/src/assets/images/jzfx_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/rqgxpro_icon.svg b/src/assets/images/rqgxpro_icon.svg new file mode 100644 index 0000000..0446dc4 --- /dev/null +++ b/src/assets/images/rqgxpro_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/rzfx_icon.svg b/src/assets/images/rzfx_icon.svg new file mode 100644 index 0000000..44cd83a --- /dev/null +++ b/src/assets/images/rzfx_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/zlfx_icon.svg b/src/assets/images/zlfx_icon.svg new file mode 100644 index 0000000..9e6631a --- /dev/null +++ b/src/assets/images/zlfx_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/Authorization.vue b/src/components/Authorization.vue index d9333f2..cd67dee 100644 --- a/src/components/Authorization.vue +++ b/src/components/Authorization.vue @@ -2,6 +2,9 @@
授权书
+
+ (未成年人不得使用) +
@@ -9,7 +12,7 @@

本人 {{ signature ? props.name : "____________" }} - 拟向贵司申请大数据分析报告查询业务,贵司需要了解本人相关状况,用于查询大数据分析报告,因此本人同意向贵司提供本人的姓名和手机号等个人信息,并同意贵司向第三方(包括但不限于西部数据交易有限公司)传送上述信息。第三方将使用上述信息核实信息真实情况,查询信用记录,并生成报告。 + 拟向贵司申请大数据分析报告查询业务,贵司需要了解本人相关状况,用于查询大数据分析报告及查询可能与我本人有关的公开的法律信息,因此本人同意向贵司提供本人的姓名和手机号等个人信息,并同意贵司向第三方(包括但不限于西部数据交易有限公司)传送上述信息。第三方将使用上述信息核实信息真实情况,查询信用记录,并生成报告。

授权内容如下:

    @@ -19,10 +22,16 @@
  1. 依法成立的第三方服务商查询或核实、搜集、保存、处理、共享、使用(含合法业务应用)本人相关数据,且不再另行告知本人,但法律、法规、监管政策禁止的除外。
  2. +
  3. + 本人授权贵司通过相关渠道查询可能与我本人有关的公开的法律信息,用于协助我了解自身法律状况。 +
  4. 本人授权有效期为自授权之日起 - 1个月。本授权为不可撤销授权,但法律法规另有规定的除外。 + 1个月。本授权为不可撤销授权,但法律法规另有规定的除外。平台在我的授权下不构成任何对我本人的侵权行为。 +
  5. +
  6. + 我点击"签署"则视为我本人同意授权本次查询。

用户声明与承诺:

@@ -36,6 +45,9 @@
  • 若用户冒名签署或提供虚假信息,由用户自行承担全部法律责任,平台不承担任何后果。
  • +
  • + 我声明我是完全民事行为能力人,我完全理解并同意上述所有内容,授权是我真实意思表示。 +
  • 特别提示:

    附加说明: