authenticationInformation.vue 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view style="background-color: $color-white !important;">
  3. <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle" back-icon-color="#fff" title-color="#fff"
  4. :background="background" title-width="300" :title="i18n('Authentication Information')"></u-navbar>
  5. </view>
  6. </template>
  7. <script>
  8. import listCell from '@/components/JumpBox';
  9. export default {
  10. components: {
  11. listCell
  12. },
  13. data() {
  14. return {
  15. background: {
  16. backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
  17. },
  18. backStyle: {
  19. color: '#FFFFFF',
  20. },
  21. };
  22. },
  23. onShow() {
  24. },
  25. methods: {
  26. navTo(route) {
  27. this.$mRouter.push({
  28. route
  29. });
  30. },
  31. i18n(data) {
  32. return this.$t('common.' + data);
  33. },
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. page,
  39. body.pages-profile-profileSetUp-setUp uni-page-body {
  40. background-color: #fff !important;
  41. // height: 110vh;
  42. }
  43. </style>