1.vue 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <div :class="['footerInfoBox',{componentBorder: this.$store.state.template.previewStatus==false}]">
  3. <div class="footerInfoBoxContent">
  4. <div class="footerInfoBoxContentLeft">
  5. <img src="@/assets/template/component/sign1.png">
  6. </div>
  7. <div class="footerInfoBoxContentMain">
  8. <div>本站部分信息由相应民事主体自行提供,该信息内容的真实性、准确性和合法性应由该民事主体负责。三农市场信息网 对此不承担任何保证责任。</div>
  9. <div>本网部分转载文章、图片等无法联系到权利人。请相关权利人与本网站联系。</div>
  10. <div>北京中农兴业网络技术有限公司主办 | 政讯通·全国政务信息一体化办公室 主管</div>
  11. <div>联系电话:010-56019387、010-80440269、010-69945235,监督电话:18516948318,违法和不良信息举报电话:010-57028685</div>
  12. <div>第一办公区:北京市西城区敬胜胡同甲3号东侧;第二办公区:北京市东城区建国门内大街26号新闻大厦5层</div>
  13. <div>邮箱: qgsndy@163.com 客服QQ : 2909421493 通联QQ : 213552413</div>
  14. </div>
  15. <div class="footerInfoBoxContentRight">
  16. <img src="@/assets/template/component/sign2.png">
  17. </div>
  18. </div>
  19. <div class="footerInfoBoxBottom">
  20. <img src="@/assets/template/component/bottom1.png">
  21. <img src="@/assets/template/component/bottom2.png">
  22. <img src="@/assets/template/component/bottom3.png">
  23. <img src="@/assets/template/component/bottom4.png">
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. props: {
  30. },
  31. data() {
  32. return {
  33. };
  34. },
  35. methods: {
  36. },
  37. mounted() {
  38. },
  39. };
  40. </script>
  41. <style scoped lang="less">
  42. .componentBorder {
  43. border: 2px dashed #999;
  44. }
  45. .footerInfoBox {
  46. width: 80%;
  47. .footerInfoBoxContent {
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. .footerInfoBoxContentLeft {
  52. width: 10%;
  53. box-sizing: border-box;
  54. padding-right: 10px;
  55. img {
  56. width: 100%;
  57. display: block;
  58. }
  59. }
  60. .footerInfoBoxContentMain {
  61. padding-top: 40px;
  62. font-size: 14px;
  63. div {
  64. text-align: center;
  65. padding-bottom: 10px;
  66. color: #fff;
  67. }
  68. }
  69. .footerInfoBoxContentRight {
  70. width: 10%;
  71. box-sizing: border-box;
  72. padding-left: 10px;
  73. img {
  74. width: 100%;
  75. display: block;
  76. }
  77. }
  78. }
  79. .footerInfoBoxBottom {
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. padding-top: 40px;
  84. img {
  85. width: 10%;
  86. display: block;
  87. margin-right: 10px;
  88. }
  89. }
  90. }
  91. </style>