帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
2.8 KiB

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="certified-individual">
  3. <!--顶部导航栏-->
  4. <navbar leftClick @leftClick="$utils.navigateBack" title="个人认证"/>
  5. <!--内容区域-->
  6. <view class="content">
  7. <view class="title">
  8. <view class="image">
  9. <image src="/static/image/auth/1.svg" style="width: 100%;height: 100%"></image>
  10. </view>
  11. 请确保二代身份证有效,并且头像文字清晰四角对齐,无反光无遮挡
  12. </view>
  13. <view class="center">
  14. <view class="avatarFace">
  15. <image src="/static/image/auth/2.png" style="width: 100%;height: 100%"></image>
  16. </view>
  17. <view class="reverseSide">
  18. <image src="/static/image/auth/2.png" style="width: 100%;height: 100%"></image>
  19. </view>
  20. </view>
  21. </view>
  22. <!--立即上传按钮-->
  23. <view @click="nowAuth" class="bottomBtn">
  24. 立即认证
  25. </view>
  26. <!--立即上传按钮-->
  27. <view class="agree">
  28. <uv-checkbox-group v-model="checkboxValue" placement="column" size="35"
  29. activeColor="#008000" inactiveColor="#999999">
  30. <uv-checkbox shape='circle' :checked="true" name="apple"
  31. :label="labelValue ? labelValue : ''" iconSize="35">
  32. </uv-checkbox>
  33. </uv-checkbox-group>
  34. 我已阅读并同意签署 <span style="color:#009dff">人脸识别服务协议</span>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. checkboxValue: '香蕉',
  43. labelValue: '' // 如果labelValue为空,则不会显示任何内容
  44. };
  45. },
  46. methods: {
  47. nowAuth() {
  48. }
  49. }
  50. }
  51. </script>
  52. <style lang="scss" scoped>
  53. .certified-individual {
  54. .content {
  55. padding: 40rpx;
  56. .title {
  57. display: flex;
  58. font-size: 30rpx;
  59. .image {
  60. display: flex;
  61. align-items: flex-start;
  62. width: 10vw;
  63. height: 3vh;
  64. }
  65. }
  66. .center {
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. align-items: center;
  71. gap: 150rpx;
  72. margin-top: 15%;
  73. .avatarFace {
  74. width: 80vw;
  75. height: 20vh;
  76. }
  77. .reverseSide {
  78. width: 80vw;
  79. height: 20vh;
  80. }
  81. }
  82. }
  83. .bottomBtn {
  84. position: fixed;
  85. bottom: 15%;
  86. left: 25%;
  87. width: 50%;
  88. height: 60rpx;
  89. line-height: 60rpx;
  90. font-size: 30rpx;
  91. color: #FFFFFF;
  92. text-align: center;
  93. border: 1px solid red;
  94. background: $uni-linear-gradient-color;
  95. -webkit-background-clip: text; /*将设置的背景颜色限制在文字中*/
  96. -webkit-text-fill-color: transparent; /*给文字设置成透明*/
  97. }
  98. .agree {
  99. position: fixed;
  100. bottom: 7%;
  101. display: flex;
  102. padding-left: 20rpx;
  103. border: 1px solid red;
  104. }
  105. }
  106. </style>