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