App.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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>技术支持:福建鸿锵教育科技有限公司 ©2022 </p>
  10. <p>
  11. <img class="beian inline-block" src="./assets/images/beian_hashc9b229c96d.png" alt="">
  12. <a href="http://beian.miit.gov.cn/" target="_blank">
  13. 网站备案:闽ICP备19021760号-2
  14. </a>
  15. </p>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. import { mapActions } from "vuex";
  23. export default {
  24. name: 'App',
  25. methods:{
  26. ...mapActions("user", ["loadTypeList"]),
  27. },
  28. created(){
  29. this.loadTypeList()
  30. }
  31. }
  32. </script>
  33. <style lang="less">
  34. html,
  35. body {
  36. padding: 0;
  37. line-height: 1.5;
  38. color: #333;
  39. font-family: "Arial";
  40. font-size: 14px;
  41. background-color: #efefef;
  42. }
  43. div {
  44. display: block;
  45. }
  46. </style>