Blame view

HHECS.Web/src/layout/components/Copyright.vue 415 Bytes
1
2
<template>
  <div class="copyright">
胡菁 authored
3
4
    {{ $t("system.about") }}
    <!-- © 2025 长沙华恒机器人系统有限公司 All rights reserved -->
5
6
7
  </div>
</template>
胡菁 authored
8
<script></script>
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>