yyg1378265336
2025-02-27 1384174f03c9a009cfbb3ae99aaeec21f177e4c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<template>
  <span :class="getTagClass" v-if="getShowTag">{{ getContent }}</span>
</template>
<script lang="ts" setup>
  import type { Menu } from '@/router/types';
  import { computed } from 'vue';
  import { useDesign } from '@/hooks/web/useDesign';
  import { propTypes } from '@/utils/propTypes';
 
  defineOptions({ name: 'SimpleMenuTag' });
 
  const props = defineProps({
    item: {
      type: Object as PropType<Menu>,
      default: () => ({}),
    },
    dot: propTypes.bool,
    collapseParent: propTypes.bool,
  });
 
  const { prefixCls } = useDesign('simple-menu');
 
  const getShowTag = computed(() => {
    const { item } = props;
 
    if (!item) return false;
 
    const { tag } = item;
    if (!tag) return false;
 
    const { dot, content } = tag;
    if (!dot && !content) return false;
    return true;
  });
 
  const getContent = computed(() => {
    if (!getShowTag.value) return '';
    const { item, collapseParent } = props;
    const { tag } = item;
    const { dot, content } = tag!;
    return dot || collapseParent ? '' : content;
  });
 
  const getTagClass = computed(() => {
    const { item, collapseParent } = props;
    const { tag = {} } = item || {};
    const { dot, type = 'error' } = tag;
    const tagCls = `${prefixCls}-tag`;
    return [
      tagCls,
 
      [`${tagCls}--${type}`],
      {
        [`${tagCls}--collapse`]: collapseParent,
        [`${tagCls}--dot`]: dot || props.dot,
      },
    ];
  });
</script>