|
|
@@ -10,6 +10,17 @@ definePage({
|
|
|
})
|
|
|
|
|
|
const paddingTop = safeAreaInsets?.top || 0
|
|
|
+
|
|
|
+
|
|
|
+const infoData=[{
|
|
|
+ title:'您知晓并同意:如需使用平台收益提现、佣金结算功能,需主动提供本人有效身份证实名信息,用于资金打款身份核验',
|
|
|
+},{
|
|
|
+ title:'您保证提交的身份证资料为本人真实、合法有效的信息,自愿授权平台采集、加密存储、仅用于结算核验相关业务。',
|
|
|
+},{
|
|
|
+ title:'您拥有随时撤回实名信息授权的权利,撤回授权后,提现、收益结算相关功能将暂停使用,平台不再调取、使用您的实名证件信息。',
|
|
|
+},{
|
|
|
+ title:'平台承诺,未经您单独许可,不会将您的身份证实名信息用于本协议约定以外的任何场景。',
|
|
|
+}]
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
@@ -444,6 +455,17 @@ const paddingTop = safeAreaInsets?.top || 0
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="mb-6">
|
|
|
+ <view class="mb-3 text-xl text-[#1a1a1a] font-bold">
|
|
|
+ 五、实名信息授权约定
|
|
|
+ </view>
|
|
|
+ <view v-for='(item,index) in infoData' :key='index'>
|
|
|
+ <p class="paragraph">
|
|
|
+ {{index+1}}. {{item.title}}:
|
|
|
+ </p>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<!-- 底部信息 -->
|
|
|
@@ -470,4 +492,10 @@ const paddingTop = safeAreaInsets?.top || 0
|
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
|
|
margin: 0 20rpx;
|
|
|
}
|
|
|
+.paragraph {
|
|
|
+ font-size: 28rpx;
|
|
|
+ line-height: 44rpx;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ text-indent: 56rpx;
|
|
|
+}
|
|
|
</style>
|