index.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!--
  2. * @Author: wanglj 471442253@qq.com
  3. * @Date: 2022-12-13 10:28:32
  4. * @LastEditors: wanglj
  5. * @LastEditTime: 2022-12-15 15:03:05
  6. * @Description: file content
  7. * @FilePath: \opms_frontend\src\vab\components\VabFooter\index.vue
  8. -->
  9. <template>
  10. <footer class="vab-footer">
  11. Copyright
  12. <vab-icon icon="copyright-line" />
  13. {{ fullYear }}
  14. <!-- {{ title }} -->
  15. 由大数华创提供技术支持
  16. </footer>
  17. </template>
  18. <script>
  19. import { title } from '@/config'
  20. export default {
  21. name: 'VabFooter',
  22. data() {
  23. return {
  24. fullYear: new Date().getFullYear(),
  25. title,
  26. }
  27. },
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. .vab-footer {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. min-height: 40px;
  36. margin-top: 10px;
  37. margin-left: -$base-padding;
  38. margin-right: -$base-padding;
  39. border-left: 1px solid rgba(40, 44, 52, 0.1);
  40. padding: 0 $base-padding 0 $base-padding;
  41. color: rgba(0, 0, 0, 0.45);
  42. background: $base-color-white;
  43. // border-top: 1px dashed $base-border-color;
  44. i {
  45. margin: 0 5px;
  46. }
  47. }
  48. </style>