App.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div class="app">
  3. <div>
  4. <router-view />
  5. </div>
  6. <div class="ng-scope">
  7. <div class="footer ng-scope" style="z-index: 10">
  8. <div class="footer-bd">
  9. <p>技术支持:三明市建设人才服务中心【0598-5157296】</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. 网站备案:闽ICP备19021760号-2
  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. methods:{
  29. ...mapActions("user", ["loadTypeList"]),
  30. },
  31. created(){
  32. this.loadTypeList()
  33. }
  34. }
  35. </script>
  36. <style lang="less">
  37. html,
  38. body {
  39. padding: 0;
  40. line-height: 1.5;
  41. color: #333;
  42. font-family: "Arial";
  43. font-size: 14px;
  44. background-color: #efefef;
  45. }
  46. div {
  47. display: block;
  48. }
  49. </style>