index.vue 871 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div class="m-about">
  3. <div class="mb-title">公司概况</div>
  4. <div class="mb-detail">
  5. <p v-for="(item,i) in join.detail" :key="i">{{item}}</p>
  6. </div>
  7. <div class="btn">
  8. <span @click="$router.push({path:'/join-us'})">加入我们</span>
  9. </div>
  10. <mSwiper/>
  11. </div>
  12. </template>
  13. <script>
  14. import mSwiper from '@/components/m-swiper'
  15. export default {
  16. props: ['join'],
  17. components: {
  18. mSwiper
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. .m-about{
  24. text-align: center;
  25. background: #1c1d26;
  26. color: #fff;
  27. padding: 40px 0;
  28. }
  29. .m-about .mb-title{
  30. font-size: 20px;
  31. font-weight: bold;
  32. margin-bottom: 40px;
  33. }
  34. .m-about .mb-detail{
  35. text-align: justify;
  36. margin-bottom: 80px;
  37. font-size: 14px;
  38. }
  39. .m-about .mb-detail p{
  40. width: 88%;
  41. line-height: 1.5;
  42. margin: 20px auto;
  43. }
  44. </style>