github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/ui/src/layout/Footer.vue (about)

     1  <template>
     2    <div class="footer">
     3  <!--    <span class="copyright">
     4        © 2019-2020 <a href="http://www.easycorp.cn" target="_blank">易企天创</a>
     5      </span>
     6      <span class="icp-info">
     7        <a href="http://beian.miit.gov.cn/" class="common" target="_blank">鲁ICP备18054969号-14</a>
     8      </span>-->
     9    </div>
    10  </template>
    11  
    12  <script>
    13  export default {
    14    name: 'Footer',
    15    components: {
    16    },
    17    data () {
    18      return {
    19      }
    20    },
    21    computed: {
    22    },
    23    created () {
    24    },
    25    mounted () {
    26    },
    27    methods: {
    28    }
    29  }
    30  </script>
    31  
    32  <style lang="less" scoped>
    33  .footer {
    34    height: 39px;
    35    line-height: 39px;
    36    text-align: center;
    37    font-family: 'WenQuanYi Micro Hei';
    38  
    39    span {
    40      display: inline-block;
    41      margin: 0 8px;
    42    }
    43  
    44    .icp-info {
    45      a {
    46        font-size: 12px;
    47      }
    48    }
    49  }
    50  </style>