Footer2.0.vue 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div class="footer-nav">
  3. <div class="container">
  4. <el-row>
  5. <el-col :span="5" class="nav-logo-block">
  6. <div class="nav-title-wrapper">
  7. <img :src="logo_white" alt="logo" class="nav-logo">
  8. <div class="nav-title">
  9. {{ footer_title_one }}<br/>
  10. {{ footer_title_two }}
  11. </div>
  12. </div>
  13. </el-col>
  14. <el-col :span="19" style="padding-left: 15%">
  15. <div class="copyright-block pull-left" style="margin: 12px 0">
  16. 版权所有©信息产品及科技服务集成化众测服务平台与应用项目组<br/>
  17. <img src="@/assets/image/police.png" style="width: 20px;height: 20px;vertical-align:middle;">
  18. <span style="vertical-align: middle;height: 20px;line-height: 20px">粤公网安备 44011602000570号</span><br/>
  19. <a :href="footer_provider_number_url" style="color: white; font-size: 16px">{{ footer_provider_number }}</a><br/>
  20. 电话:{{ footer_mobile }} 传真:{{ footer_fax }}1<br/>
  21. 电子邮箱:{{ footer_email }}
  22. </div>
  23. <div class="code-block pull-right" v-if="footer_QRcode">
  24. <img :src="footer_QRcode" alt="QRcode" class="mooctest-code" style="width: 110px;height: 110px;display: block">
  25. <div style="width: 110px;text-align: center">官方微信公众号</div>
  26. </div>
  27. </el-col>
  28. </el-row>
  29. </div>
  30. </div>
  31. </template>
  32. <script>
  33. import {CONFIG} from "../../config";
  34. export default {
  35. name: "Footer2.0",
  36. data(){
  37. return{
  38. logo_white:CONFIG.logo_white,
  39. footer_title_one:CONFIG.footer_title_one,
  40. footer_title_two:CONFIG.footer_title_two,
  41. footer_provider_number:CONFIG.footer_provider_number,
  42. footer_mobile:CONFIG.footer_mobile,
  43. footer_fax:CONFIG.footer_fax,
  44. footer_email:CONFIG.footer_email,
  45. footer_QRcode:CONFIG.footer_QRcode,
  46. }
  47. }
  48. }
  49. </script>
  50. <style scoped lang="scss">
  51. @import "../../style/main";
  52. .footer-nav{
  53. height: 120px;
  54. background:$--color-primary;
  55. color: $--color-title-color;
  56. padding: 30px 0;
  57. font-size: 14px;
  58. font-family:Source Han Sans CN;
  59. }
  60. .footer-nav-online{
  61. height: 120px;
  62. background:$__color-primary;
  63. color: $--color-title-color;
  64. padding: 30px 0;
  65. font-size: 14px;
  66. font-family:Source Han Sans CN;
  67. }
  68. .nav-title{
  69. display: inline-block;
  70. }
  71. .nav-logo{
  72. height: 40px;
  73. width: 40px;
  74. margin-right: 10px;
  75. }
  76. .nav-logo-block{
  77. border-right: 1px solid $--color-title-color;
  78. padding: 10px 0;
  79. margin: 20px 0
  80. }
  81. .copyright-block , .code-block{
  82. display: inline-block;
  83. }
  84. </style>