contact.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <div>
  3. <Header></Header>
  4. <div class="top">
  5. <div class="videoContainer">
  6. <!-- <video id="back_video" class="video fillWidth" muted autoplay loop playsinline preload="metadata" crossorigin="anoymous">
  7. <source :src="pageData.video" type="video/mp4" />
  8. </video> -->
  9. <video id="back_video" :style="fixStyle" class="video fillWidth" muted autoplay loop playsinline preload="metadata" crossorigin="anoymous" v-if="pageData.type=='video'">
  10. <source :src="pageData.l_pic" type="video/mp4" />
  11. </video>
  12. <el-image :src="pageData.l_pic" class="video fillWidth" fit="cover" v-if="pageData.type=='image'"></el-image>
  13. </div>
  14. <div class="subTitle" v-html="pageData.l_content"></div>
  15. <div class="text">电话:{{ pageData.l_phone }}</div>
  16. <div class="text">传真:{{ pageData.l_fax }}</div>
  17. <div class="text">地址:{{ pageData.l_address }}</div>
  18. <div class="line"></div>
  19. </div>
  20. <Footer :footer="footer"></Footer>
  21. </div>
  22. </template>
  23. <script>
  24. import Header from '@/components/header.vue'
  25. import Footer from '@/components/footer.vue'
  26. var that = ''
  27. export default {
  28. name: 'Contact',
  29. components: {
  30. Header,
  31. Footer
  32. },
  33. data() {
  34. return {
  35. pageData: { },
  36. footer: {}
  37. }
  38. },
  39. created() {
  40. that = this
  41. that.getConfig()
  42. },
  43. mounted() {
  44. },
  45. methods: {
  46. // 获取基础配置信息
  47. getConfig() {
  48. that.$http.getConfig().then((res) => {
  49. if(res.data.code == 1) {
  50. that.pageData = res.data.data
  51. var temp = that.pageData.l_pic.substr(that.pageData.l_pic.length - 3,3)
  52. var type = ''
  53. if(temp == 'jpg' || temp == 'png' || temp == 'gif') {
  54. type = 'image'
  55. } else if(temp == 'mp4' || temp == 'avi') {
  56. type = 'video'
  57. }
  58. that.$set(that.pageData,'type',type)
  59. that.footer = {
  60. company: that.pageData.company,
  61. phone: that.pageData.phone,
  62. address: that.pageData.address,
  63. }
  64. }
  65. })
  66. }
  67. }
  68. }
  69. </script>
  70. <style scoped>
  71. @media (max-width: 750px) {
  72. .top {
  73. padding: 60vh 151px 200px !important;
  74. }
  75. }
  76. .top {
  77. box-sizing: border-box;
  78. padding: 500px 100px 0;
  79. min-height: 100vh;
  80. }
  81. .top .title {
  82. font-size: 60px;
  83. font-weight: 500;
  84. color: #fff;
  85. padding-bottom: 200px;
  86. padding-left: 151px;
  87. }
  88. .top .subTitle {
  89. font-size: 60px;
  90. font-weight: 500;
  91. color: #fff;
  92. padding-left: 151px;
  93. padding-bottom: 113px;
  94. line-height: 90px;
  95. }
  96. .top .text {
  97. max-width: 100% !important;
  98. font-size: 36px;
  99. font-weight: 500;
  100. color: #fff;
  101. line-height: 50px;
  102. padding-left: 151px;
  103. }
  104. .top .line {
  105. width: 1720px;
  106. height: 4px;
  107. background: #FFFFFF;
  108. margin: 58px 0;
  109. }
  110. </style>