|
|
@@ -12,13 +12,16 @@
|
|
|
<Cell v-if="userInfo.mobile2 != ''" :title="$t('banksign.mobilephone')" :value="userInfo.mobile2" />
|
|
|
<Cell :title="$t('banksign.bankname1')" :value="userInfo.bankbankname" v-if="userInfo.bankbankname" />
|
|
|
<Cell :title="$t('banksign.bankno')" :value="userInfo.bankaccount" v-if="userInfo.bankaccount" />
|
|
|
- <Cell :title="$t('user.authentication.cardfrontphoto')">
|
|
|
+ <Cell v-if="userInfo.userinfotype === 1" :title="$t('user.authentication.cardfrontphoto')">
|
|
|
<Image fit="contain" :src="getFileUrl(userInfo.cardfrontphotourl)" width="100" height="100" />
|
|
|
</Cell>
|
|
|
- <Cell :title="$t('user.authentication.cardbackphoto')" v-if="showCardBackPhoto === '1'">
|
|
|
+ <Cell v-if="userInfo.userinfotype === 2" :title="$t('user.authentication.cardfrontphoto1')">
|
|
|
+ <Image fit="contain" :src="getFileUrl(userInfo.cardfrontphotourl)" width="100" height="100" />
|
|
|
+ </Cell>
|
|
|
+ <Cell :title="$t('user.authentication.cardbackphoto')" v-if="showCardBackPhoto === '1' && userInfo.userinfotype === 1">
|
|
|
<Image fit="contain" :src="getFileUrl(userInfo.cardbackphotourl)" width="100" height="100" />
|
|
|
</Cell>
|
|
|
- <Cell :title="halfBodyPhotoTitle" v-if="showHalfBodyPhoto === '1'">
|
|
|
+ <Cell :title="halfBodyPhotoTitle" v-if="showHalfBodyPhoto === '1' && userInfo.userinfotype === 1">
|
|
|
<Image fit="contain" :src="getFileUrl(userInfo.halfbodyphotourl)" width="100" height="100" />
|
|
|
</Cell>
|
|
|
<Cell :title="$t('user.authentication.authstatus')"
|