From 49f26d3f32796eceafefe73e1d45f1fe73bf4eb9 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期三, 20 八月 2025 15:28:41 +0800
Subject: [PATCH] feat: 实名

---
 apps/cMiniApp/src/subpackages/authentication/hooks/index.ts |   82 ++++++++++++++++++++---------------------
 1 files changed, 40 insertions(+), 42 deletions(-)

diff --git a/apps/cMiniApp/src/subpackages/authentication/hooks/index.ts b/apps/cMiniApp/src/subpackages/authentication/hooks/index.ts
index 47afee2..809bbad 100644
--- a/apps/cMiniApp/src/subpackages/authentication/hooks/index.ts
+++ b/apps/cMiniApp/src/subpackages/authentication/hooks/index.ts
@@ -9,8 +9,6 @@
   UserCertificationChannelEnum,
   UserCertificationPayType,
 } from '@12333/constants';
-import * as commonServices from '@12333/services/api/Common';
-import * as userServices from '@12333/services/api/User';
 import { FormValidator, Message } from '@12333/utils';
 import { useUserCertificationSetting } from '@12333/hooks';
 import Taro from '@tarojs/taro';
@@ -97,7 +95,7 @@
     if (!formRef.value) return;
     formRef.value.validate().then(({ valid, errors }: any) => {
       if (valid) {
-        addUserCertificationAudit();
+        // addUserCertificationAudit();
       }
     });
   }
@@ -106,45 +104,45 @@
 
   async function addUserCertificationAudit() {
     try {
-      let params: API.AddUserCertificationAuditInput = {
-        enterpriseType: form.enterpriseType,
-        licenseUrl: form.licenseUrl[0].path,
-        enterpriseName: form.enterpriseName,
-        societyCreditCode: form.societyCreditCode,
-        certificationMode: form.certificationMode,
-        legalPersonName: form.legalPersonName,
-        legalPersonIdNumber: form.legalPersonIdNumber,
-        legalPersonIdImgUrl: form.legalPersonIdFrontImgUrl?.[0]?.path ?? '',
-        legalPersonIdBackImgUrl: form.legalPersonIdBackImgUrl?.[0]?.path ?? '',
-        legalPersonBankCardImgUrl: form.legalPersonBankCardImgUrl?.[0]?.path ?? '',
-        certificationContact:
-          form.certificationElement === UserCertificationElementEnum.Identity4
-            ? form.legalPersonName
-            : form.proxyPersonName,
-        certificationContactPhone:
-          form.certificationElement === UserCertificationElementEnum.Identity4
-            ? form.legalPersonContactPhone
-            : form.proxyPersonContactPhone,
-        proxyPersonName: form.proxyPersonName,
-        proxyPersonIdNumber: form.proxyPersonIdNumber,
-        proxyPersonIdImgUrl: form.proxyPersonIdFrontImgUrl?.[0]?.path ?? '',
-        proxyPersonIdBackImgUrl: form.proxyPersonIdBackImgUrl?.[0]?.path ?? '',
-        proxyPersonBankCardImgUrl: form.proxyPersonBankCardImgUrl?.[0]?.path ?? '',
-        proxyPowerAttorneyUrl: form.proxyPowerAttorneyUrl?.[0]?.path ?? '',
-        certificationChannel: UserCertificationChannelEnum.ThirdParty,
-        certificationElement: form.certificationElement,
-        vCode: form.verificationCode,
-        bankCardNumber: form.bankCardNumber,
-        payType: UserCertificationPayType.NotNeedPay,
-      };
-      loading.value = true;
-      let res = await userServices.addUserCertificationAudit(params, { showLoading: false });
-      if (res) {
-        updateUserInfo();
-        Taro.redirectTo({
-          url: RouterPath.authenticationResult,
-        });
-      }
+      // let params: API.AddUserCertificationAuditInput = {
+      //   enterpriseType: form.enterpriseType,
+      //   licenseUrl: form.licenseUrl[0].path,
+      //   enterpriseName: form.enterpriseName,
+      //   societyCreditCode: form.societyCreditCode,
+      //   certificationMode: form.certificationMode,
+      //   legalPersonName: form.legalPersonName,
+      //   legalPersonIdNumber: form.legalPersonIdNumber,
+      //   legalPersonIdImgUrl: form.legalPersonIdFrontImgUrl?.[0]?.path ?? '',
+      //   legalPersonIdBackImgUrl: form.legalPersonIdBackImgUrl?.[0]?.path ?? '',
+      //   legalPersonBankCardImgUrl: form.legalPersonBankCardImgUrl?.[0]?.path ?? '',
+      //   certificationContact:
+      //     form.certificationElement === UserCertificationElementEnum.Identity4
+      //       ? form.legalPersonName
+      //       : form.proxyPersonName,
+      //   certificationContactPhone:
+      //     form.certificationElement === UserCertificationElementEnum.Identity4
+      //       ? form.legalPersonContactPhone
+      //       : form.proxyPersonContactPhone,
+      //   proxyPersonName: form.proxyPersonName,
+      //   proxyPersonIdNumber: form.proxyPersonIdNumber,
+      //   proxyPersonIdImgUrl: form.proxyPersonIdFrontImgUrl?.[0]?.path ?? '',
+      //   proxyPersonIdBackImgUrl: form.proxyPersonIdBackImgUrl?.[0]?.path ?? '',
+      //   proxyPersonBankCardImgUrl: form.proxyPersonBankCardImgUrl?.[0]?.path ?? '',
+      //   proxyPowerAttorneyUrl: form.proxyPowerAttorneyUrl?.[0]?.path ?? '',
+      //   certificationChannel: UserCertificationChannelEnum.ThirdParty,
+      //   certificationElement: form.certificationElement,
+      //   vCode: form.verificationCode,
+      //   bankCardNumber: form.bankCardNumber,
+      //   payType: UserCertificationPayType.NotNeedPay,
+      // };
+      // loading.value = true;
+      // let res = await userServices.addUserCertificationAudit(params, { showLoading: false });
+      // if (res) {
+      //   updateUserInfo();
+      //   Taro.redirectTo({
+      //     url: RouterPath.authenticationResult,
+      //   });
+      // }
     } catch (error) {
     } finally {
       loading.value = false;

--
Gitblit v1.9.1