Sign in

ECS5 / ECS5.0Web · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ECS5.0Web
  • HHECS.Web
  • src
  • layout
  • components
  • Copyright.vue
  • 重新做底部版权
    9bee6148
    weijuan55650@qq.com authored
    2025-04-03 11:15:10 +0800  
    Browse Code »
Copyright.vue 379 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template>
  <div class="copyright">
    © 2025 长沙华恒机器人系统有限公司 All rights reserved
  </div>
</template>

<script>

</script>
<style lang="scss" scoped>
.copyright {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  text-align: center;
  /* padding: 10px 0; */
  height: 38px;
  line-height: 38px;
  z-index: 1000;
}
</style>