| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!--
- * @Author: wanglj 471442253@qq.com
- * @Date: 2022-12-13 10:28:32
- * @LastEditors: wanglj
- * @LastEditTime: 2022-12-15 15:03:05
- * @Description: file content
- * @FilePath: \opms_frontend\src\vab\components\VabFooter\index.vue
- -->
- <template>
- <footer class="vab-footer">
- Copyright
- <vab-icon icon="copyright-line" />
- {{ fullYear }}
- <!-- {{ title }} -->
- 由大数华创提供技术支持
- </footer>
- </template>
- <script>
- import { title } from '@/config'
- export default {
- name: 'VabFooter',
- data() {
- return {
- fullYear: new Date().getFullYear(),
- title,
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .vab-footer {
- display: flex;
- align-items: center;
- justify-content: center;
- min-height: 40px;
- margin-top: 10px;
- margin-left: -$base-padding;
- margin-right: -$base-padding;
- border-left: 1px solid rgba(40, 44, 52, 0.1);
- padding: 0 $base-padding 0 $base-padding;
- color: rgba(0, 0, 0, 0.45);
- background: $base-color-white;
- // border-top: 1px dashed $base-border-color;
- i {
- margin: 0 5px;
- }
- }
- </style>
|