App.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div class="app">
  3. <div>
  4. <router-view />
  5. </div>
  6. <div class="p-wrap-full">
  7. <div class="footer ng-scope" style="z-index: 10">
  8. <div class="footer-bd">
  9. <p>技术支持:{{config.title}}</p>
  10. <p>
  11. <span> ©2021 </span>
  12. <!-- <a href="http://beian.miit.gov.cn/" target="_blank">闽ICP备19021760号-1</a> -->
  13. <img class="beian" src="./assets/images/beian_hashc9b229c96d.png" alt="">
  14. <!-- <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=35010202001216" target="_blank"> -->
  15. <a href="http://beian.miit.gov.cn/" target="_blank">
  16. 网站备案:{{config.beian}}
  17. </a>
  18. </p>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. import { mapActions } from "vuex";
  26. export default {
  27. name: 'App',
  28. data() {
  29. return {
  30. config: window.baseConfig,
  31. }
  32. }
  33. }
  34. </script>
  35. <style lang="less">
  36. html,
  37. body {
  38. padding: 0;
  39. line-height: 1.5;
  40. color: #333;
  41. font-family: "Arial";
  42. font-size: 14px;
  43. background-color: #efefef;
  44. }
  45. div {
  46. display: block;
  47. }
  48. </style>