12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <template>
- <div class="tags-view-item" :class="active ? 'active' : ''">
- <router-link :to="menu.path" v-if="menu.meta.title">
- {{ menu.meta.title }}
- </router-link>
- <el-icon><Close @click.stop="closeTab" v-if="!menu.meta.hideClose" title="关闭当前标签页"></Close></el-icon>
- </div>
- </template>
- <script>
- import { defineComponent } from 'vue'
- export default defineComponent({
- props: {
- menu: {
- type: Object,
- default: () => {
- return {
- path: '',
- meta: {
- label: '',
- hideClose: false,
- },
- }
- },
- },
- active: {
- type: Boolean,
- default: false,
- },
- },
- setup(props, { emit }) {
- // 关闭按钮
- function closeTab() {
- emit('close')
- }
- return {
- closeTab,
- }
- },
- })
- </script>
- <style lang="scss" scoped>
- .tags-view-item {
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- cursor: pointer;
- height: 24px;
- line-height: 24px;
- border: 1px solid var(--system-header-border-color);
- color: var(--system-header-text-color);
- background: var(--system-header-tab-background);
- padding: 0 8px;
- font-size: 12px;
- margin-left: 5px;
- margin-top: 4px;
- border-radius: 2px;
- a {
- color: var(--system-header-text-color);
- height: 24px;
- display: inline-block;
- padding-left: 8px;
- padding-right: 8px;
- }
- .el-icon-refresh-right {
- display: inline-block;
- margin-right: 5px;
- }
- .el-icon-close {
- display: inline-block;
- height: 24px;
- }
- &:first-of-type {
- margin-left: 15px;
- }
- &:last-of-type {
- margin-right: 15px;
- }
- &.active {
- background: var(--system-primary-color);
- border-color: var(--system-primary-color);
- color: var(--system-primary-text-color);
- a {
- color: var(--system-primary-text-color);
- }
- &:hover {
- background: var(--system-primary-color);
- }
- }
- &:hover {
- background-color: var(--system-header-item-hover-color);
- }
- }
- </style>
|