| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <div class="app">
- <div>
- <router-view />
- </div>
- <div class="p-wrap-full">
- <div class="footer ng-scope" style="z-index: 10">
- <div class="footer-bd">
- <p>技术支持:{{config.title}}</p>
- <p>
- <span> ©2021 </span>
- <!-- <a href="http://beian.miit.gov.cn/" target="_blank">闽ICP备19021760号-1</a> -->
- <img class="beian" src="./assets/images/beian_hashc9b229c96d.png" alt="">
- <!-- <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=35010202001216" target="_blank"> -->
- <a href="http://beian.miit.gov.cn/" target="_blank">
- 网站备案:{{config.beian}}
- </a>
- </p>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapActions } from "vuex";
- export default {
- name: 'App',
- data() {
- return {
- config: window.baseConfig,
- }
- }
- }
- </script>
- <style lang="less">
- html,
- body {
- padding: 0;
- line-height: 1.5;
- color: #333;
- font-family: "Arial";
- font-size: 14px;
- background-color: #efefef;
- }
- div {
- display: block;
- }
- </style>
|