realAuthentication.vue 490 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <h3>{{ $t('setting.realNameAuthentication') }}</h3>
  4. <v-divider class="mb-4"></v-divider>
  5. <div class="tips mt-2 mb-1">一经实名认证后将无法修改,请填写真实的实名信息!</div>
  6. </div>
  7. </template>
  8. <script setup name="realAuthentication">
  9. </script>
  10. <style lang="scss" scoped>
  11. h3 {
  12. font-size: 20px;
  13. text-align: left;
  14. font-weight: 600;
  15. padding-bottom: 25px;
  16. }
  17. .tips {
  18. color: grey;
  19. font-size: 14px;
  20. font-weight: 600;
  21. }
  22. </style>