|  |  | 
 |  |  |   <ContentScrollView class="authenticationHome-page-view"> | 
 |  |  |     <div class="authenticationHome-page-title">实名认证</div> | 
 |  |  |     <authenticationHomeItem | 
 |  |  |       title="企业法人认证" | 
 |  |  |       title="个人实名认证" | 
 |  |  |       :icon="IconFaren" | 
 |  |  |       :info="[['企业营业执照照片', '法人身份证照片'], ['法人手机号码(接收短信验证码进行短信核验)']]" | 
 |  |  |       @click="goFaRen" | 
 |  |  |       :info="[['身份证照片'], ['手机号码(接收短信验证码进行短信核验)']]" | 
 |  |  |       @click="goRealName('realName')" | 
 |  |  |     ></authenticationHomeItem> | 
 |  |  |     <authenticationHomeItem | 
 |  |  |       title="企业经办人认证" | 
 |  |  |       title="实人认证" | 
 |  |  |       isJBR | 
 |  |  |       :icon="IconJBR" | 
 |  |  |       :info="[ | 
 |  |  |         ['企业授权书', '企业营业执照照片', '经办人身份证照片'], | 
 |  |  |         ['经办人手机号码(接收短信验证码进行短信核验)'], | 
 |  |  |       ]" | 
 |  |  |       @click="goJBR" | 
 |  |  |       :info="[['实人扫脸认证']]" | 
 |  |  |       @click="goFace('face')" | 
 |  |  |     > | 
 |  |  |       <template #title-extra> | 
 |  |  |         <div class="authenticationHome-page-title-btn" @click.stop="downloadPowerAttorneyTemplate"> | 
 |  |  |           下载授权书模版 | 
 |  |  |         </div> | 
 |  |  |       </template> | 
 |  |  |     </authenticationHomeItem> | 
 |  |  |   </ContentScrollView> | 
 |  |  | </template> | 
 |  |  | 
 |  |  | import IconFaren from '@/assets/authentication/icon-faren.png'; | 
 |  |  | import IconJBR from '@/assets/authentication/icon-jbr.png'; | 
 |  |  | import Taro from '@tarojs/taro'; | 
 |  |  | import { useDownloadPowerAttorneyTemplate } from '../hooks'; | 
 |  |  |  | 
 |  |  | defineOptions({ | 
 |  |  |   name: 'InnerPage', | 
 |  |  | }); | 
 |  |  |  | 
 |  |  | function goFaRen() { | 
 |  |  |   Taro.navigateTo({ url: RouterPath.authenticationFaRen }); | 
 |  |  | function goRealName(type: string) { | 
 |  |  |   Taro.navigateTo({ url: `${RouterPath.authenticationRealName}?type=${type}` }); | 
 |  |  | } | 
 |  |  |  | 
 |  |  | function goJBR() { | 
 |  |  |   Taro.navigateTo({ url: RouterPath.authenticationJBR }); | 
 |  |  | function goFace(type: string) { | 
 |  |  |   Taro.navigateTo({ url: `${RouterPath.authenticationRealName}?type=${type}` }); | 
 |  |  | } | 
 |  |  |  | 
 |  |  | const { downloadPowerAttorneyTemplate } = useDownloadPowerAttorneyTemplate(); | 
 |  |  | </script> | 
 |  |  |  | 
 |  |  | <style lang="scss"> | 
 |  |  | 
 |  |  |   .authenticationHome-page-view { | 
 |  |  |     padding-top: 48px; | 
 |  |  |     background-color: transparent; | 
 |  |  |  | 
 |  |  |     .authentication-home-item-info { | 
 |  |  |       flex-direction: column; | 
 |  |  |     } | 
 |  |  |   } | 
 |  |  |  | 
 |  |  |   .authenticationHome-page-title { |