contact.vue 801 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div class="container">
  3. <abount-header :title="title" :bgImage="bgImage"></abount-header>
  4. </div>
  5. </template>
  6. <script>
  7. import AbountHeader from '~/components/about/header';
  8. export default {
  9. data() {
  10. return {
  11. title: '联系我们',
  12. bgImage: require('~/assets/images/about/about_contact.png'),
  13. }
  14. },
  15. components: {
  16. AbountHeader,
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. @import "~static/common/style.sass";
  24. .header {
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. height: 882px;
  29. background: url('~assets/images/about/about_contact.png') 100% 100% no-repeat;
  30. font-size:64px;
  31. font-family:PingFangSC-Medium,PingFang SC;
  32. font-weight:500;
  33. color:#ffffff;
  34. }
  35. </style>