information2.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="content">
  3. <image src="../../static/shouye/index_logo.png" mode="scaleToFill" class="index-logo"></image>
  4. <view class="title">
  5. {{$t('homepledge.PKR介绍')}}
  6. </view>
  7. <view class="description">
  8. <rich-text :nodes="$t('homepledge.description')"></rich-text>
  9. </view>
  10. <taber tab='information'></taber>
  11. </view>
  12. </template>
  13. <script>
  14. import taber from "@/components/footer/footer.vue";
  15. export default {
  16. components: {
  17. taber
  18. },
  19. data() {
  20. return {};
  21. },
  22. methods: {
  23. nav(url) {
  24. uni.navigateTo({
  25. url
  26. })
  27. },
  28. navigatorH() {
  29. uni.switchTab({
  30. url: '/pages/index/entertainment'
  31. })
  32. },
  33. }
  34. };
  35. </script>
  36. <style lang="scss">
  37. .content {
  38. width: 750rpx;
  39. background-color: $page-color-base;
  40. padding-top: var(--status-bar-height);
  41. padding-bottom: 30rpx;
  42. }
  43. .title {
  44. color: $base-color;
  45. text-align: center;
  46. font-size: 58rpx;
  47. }
  48. .index-logo {
  49. width: 297rpx;
  50. height: 270rpx;
  51. margin: 0 226rpx;
  52. }
  53. .description {
  54. color: #FFFFFF;
  55. font-size: $font-base;
  56. padding: 30rpx;
  57. line-height: 2rem;
  58. }
  59. </style>