pkedetail - 副本.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. onLoad() {
  23. uni.setNavigationBarTitle({
  24. title: this.$t('homepledge.PKR介绍'),
  25. });
  26. }
  27. };
  28. </script>
  29. <style lang="scss">
  30. .content {
  31. width: 750rpx;
  32. background-color: $page-color-base;
  33. padding-top: var(--status-bar-height);
  34. padding-bottom: 30rpx;
  35. }
  36. .title {
  37. color: $base-color;
  38. text-align: center;
  39. font-size: 58rpx;
  40. }
  41. .index-logo {
  42. width: 297rpx;
  43. height: 270rpx;
  44. margin: 0 226rpx;
  45. }
  46. .description {
  47. color: #FFFFFF;
  48. font-size: $font-base;
  49. padding: 30rpx;
  50. line-height: 2rem;
  51. }
  52. </style>