footer.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div class="footer-container">
  3. <!-- <div class="footer-box flex row-center">-->
  4. <!-- <div class="server-box flex row-between">-->
  5. <!-- <div class="flex" v-for="(item, index) in lists" :key="index">-->
  6. <!-- <i-->
  7. <!-- :class="`white iconfont ${item.icon}`"-->
  8. <!-- style="font-size: 50px"-->
  9. <!-- />-->
  10. <!-- <div class="m-l-8 xxl name">{{ item.name }}</div>-->
  11. <!-- </div>-->
  12. <!-- </div>-->
  13. <!-- </div>-->
  14. <!-- <footer class="footer-wrap flex row-center">-->
  15. <!-- <a class="white" target="_blank" :href="config.icp_link"-->
  16. <!-- >{{ config.copyright_info }} {{ config.icp_number }}</a-->
  17. <!-- >-->
  18. <!-- </footer>-->
  19. </div>
  20. </template>
  21. <script>
  22. import { mapState } from 'vuex'
  23. export default {
  24. data() {
  25. return {
  26. lists: [
  27. ],
  28. }
  29. },
  30. computed: {
  31. ...mapState(['config']),
  32. },
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. .footer-container {
  37. margin-top: 38px;
  38. .footer-box {
  39. height: 120px;
  40. background-color: #222;
  41. min-width: 1180px;
  42. .server-box {
  43. width: 1180px;
  44. padding: 36px 40px;
  45. border-bottom: 1px solid #707070;
  46. .name {
  47. color: #e5e5e5;
  48. }
  49. }
  50. }
  51. .footer-wrap {
  52. min-width: 1180px;
  53. background-color: #222;
  54. height: 60px;
  55. color: #ccc;
  56. }
  57. }
  58. </style>