123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <footer class="copyRightContainer">
- <div>
- <span class="copyRightInfo"></span>
- <!--<a class="copyRightNum" href="http://www.beian.miit.gov.cn" target="_blank">浙ICP备:16000400号-2</a>-->
- </div>
- </footer>
- </template>
- <script>
- export default {
- name: 'CopyRightInfo',
- data() {
- return {
- }
- }
- }
- </script>
- <style lang="less">
- .copyRightContainer {
- position: absolute;
- bottom: 0px;
- width: 100%;
- height: 50px;
- line-height: 50px;
- background: #F0F0F0;
- font-size: 14px;
- color: #545455;
- }
- .copyRightInfo {
- margin: 0 22px 0 238px;
- }
- .copyRightNum{
- color:#545455
- }
- </style>
|