广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-02 80ff784bf60637cd348ae665fc907f7b1e527dd8
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
60
61
<script setup lang="ts">
import { computed } from 'vue';
import { $t } from '@/locales';
 
defineOptions({
  name: 'LangSwitch'
});
 
interface Props {
  /** Current language */
  lang: App.I18n.LangType;
  /** Language options */
  langOptions: App.I18n.LangOption[];
  /** Show tooltip */
  showTooltip?: boolean;
}
 
const props = withDefaults(defineProps<Props>(), {
  showTooltip: true
});
 
type Emits = {
  (e: 'changeLang', lang: App.I18n.LangType): void;
};
 
const emit = defineEmits<Emits>();
 
const tooltipContent = computed(() => {
  if (!props.showTooltip) return '';
 
  return $t('icon.lang');
});
 
/** Add bottom margin to all options except the last one for proper visual separation */
const dropdownOptions = computed(() => {
  const lastIndex = props.langOptions.length - 1;
 
  return props.langOptions.map((option, index) => ({
    ...option,
    props: {
      class: index < lastIndex ? 'mb-1' : undefined
    }
  }));
});
 
function changeLang(lang: App.I18n.LangType) {
  emit('changeLang', lang);
}
</script>
 
<template>
  <NDropdown :value="lang" :options="dropdownOptions" trigger="hover" @select="changeLang">
    <div>
      <ButtonIcon :tooltip-content="tooltipContent" tooltip-placement="left">
        <SvgIcon icon="heroicons:language" />
      </ButtonIcon>
    </div>
  </NDropdown>
</template>
 
<style scoped></style>