<template> 
 | 
  <ContentScrollView class="authenticationHome-page-view"> 
 | 
    <div class="authenticationHome-page-title">实名认证</div> 
 | 
    <authenticationHomeItem 
 | 
      title="个人实名认证" 
 | 
      :icon="IconFaren" 
 | 
      :info="[['身份证照片'], ['手机号码(接收短信验证码进行短信核验)']]" 
 | 
      @click="goRealName('realName')" 
 | 
    ></authenticationHomeItem> 
 | 
    <authenticationHomeItem 
 | 
      title="实人认证" 
 | 
      isJBR 
 | 
      :icon="IconJBR" 
 | 
      :info="[['实人扫脸认证']]" 
 | 
      @click="goFace('face')" 
 | 
    > 
 | 
    </authenticationHomeItem> 
 | 
  </ContentScrollView> 
 | 
</template> 
 | 
  
 | 
<script setup lang="ts"> 
 | 
import authenticationHomeItem from './authenticationHomeItem.vue'; 
 | 
import IconFaren from '@/assets/authentication/icon-faren.png'; 
 | 
import IconJBR from '@/assets/authentication/icon-jbr.png'; 
 | 
import Taro from '@tarojs/taro'; 
 | 
  
 | 
defineOptions({ 
 | 
  name: 'InnerPage', 
 | 
}); 
 | 
  
 | 
function goRealName(type: string) { 
 | 
  Taro.navigateTo({ url: `${RouterPath.authenticationRealName}?type=${type}` }); 
 | 
} 
 | 
  
 | 
function goFace(type: string) { 
 | 
  Taro.navigateTo({ url: `${RouterPath.authenticationRealName}?type=${type}` }); 
 | 
} 
 | 
</script> 
 | 
  
 | 
<style lang="scss"> 
 | 
@import '@/styles/common.scss'; 
 | 
  
 | 
.authenticationHome-page-wrapper { 
 | 
  .authenticationHome-page-view { 
 | 
    padding-top: 48px; 
 | 
    background-color: transparent; 
 | 
  
 | 
    .authentication-home-item-info { 
 | 
      flex-direction: column; 
 | 
    } 
 | 
  } 
 | 
  
 | 
  .authenticationHome-page-title { 
 | 
    font-weight: 600; 
 | 
    font-size: 44px; 
 | 
    color: #2f4879; 
 | 
    line-height: 60px; 
 | 
    margin-bottom: 44px; 
 | 
  } 
 | 
  
 | 
  .authenticationHome-page-title-btn { 
 | 
    font-weight: bold; 
 | 
    font-size: 24px; 
 | 
    color: boleGetCssVar('color', 'primary'); 
 | 
    line-height: 34px; 
 | 
    margin-left: 24px; 
 | 
  } 
 | 
} 
 | 
</style> 
 |