修复列表名翻译显示
parent
da4be33a04
commit
5c7e9728e6
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
- 新增音效设置(实验性功能),支持10段均衡器设置、内置的一些环境混响音效、3D立体环绕音效
|
- 新增音效设置(实验性功能),支持10段均衡器设置、内置的一些环境混响音效、3D立体环绕音效
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
|
||||||
|
- 修复列表名翻译显示
|
||||||
|
|
||||||
### 其他
|
### 其他
|
||||||
|
|
||||||
- 更新 electron 到 v22.3.8
|
- 更新 electron 到 v22.3.8
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<material-modal :show="visible" bg-close teleport="#view" width="60%" max-width="900px" @close="$emit('update:visible', false)">
|
<material-modal :show="visible" bg-close teleport="#view" width="60%" max-width="900px" @close="$emit('update:visible', false)">
|
||||||
<div :class="$style.header">
|
<div :class="$style.header">
|
||||||
<h2>{{ listInfo.name }}</h2>
|
<h2>{{ listName }}</h2>
|
||||||
</div>
|
</div>
|
||||||
<base-virtualized-list
|
<base-virtualized-list
|
||||||
v-if="duplicateList.length" v-slot="{ item, index }" :list="duplicateList" key-name="id" :class="$style.list" style="contain: none;"
|
v-if="duplicateList.length" v-slot="{ item, index }" :list="duplicateList" key-name="id" :class="$style.list" style="contain: none;"
|
||||||
|
@ -42,6 +42,8 @@ import { getListMusics, removeListMusics } from '@renderer/store/list/action'
|
||||||
import { isFullscreen } from '@renderer/store'
|
import { isFullscreen } from '@renderer/store'
|
||||||
import { appSetting } from '@renderer/store/setting'
|
import { appSetting } from '@renderer/store/setting'
|
||||||
import { getFontSizeWithScreen } from '@renderer/utils'
|
import { getFontSizeWithScreen } from '@renderer/utils'
|
||||||
|
import { LIST_IDS } from '@common/constants'
|
||||||
|
import { useI18n } from '@/lang'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
|
@ -56,6 +58,7 @@ export default {
|
||||||
},
|
},
|
||||||
emits: ['update:visible'],
|
emits: ['update:visible'],
|
||||||
setup(props) {
|
setup(props) {
|
||||||
|
const t = useI18n()
|
||||||
const duplicateList = ref([])
|
const duplicateList = ref([])
|
||||||
const listItemHeight = computed(() => {
|
const listItemHeight = computed(() => {
|
||||||
return Math.ceil((isFullscreen.value ? getFontSizeWithScreen() : appSetting['common.fontSize']) * 3.2)
|
return Math.ceil((isFullscreen.value ? getFontSizeWithScreen() : appSetting['common.fontSize']) * 3.2)
|
||||||
|
@ -85,12 +88,23 @@ export default {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const listName = computed(() => {
|
||||||
|
switch (props.listInfo.id) {
|
||||||
|
case LIST_IDS.DEFAULT:
|
||||||
|
case LIST_IDS.LOVE:
|
||||||
|
return t(props.listInfo.name)
|
||||||
|
|
||||||
|
default: return props.listInfo.name
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
listItemHeight,
|
listItemHeight,
|
||||||
duplicateList,
|
duplicateList,
|
||||||
handleFilterList,
|
handleFilterList,
|
||||||
handleRemove,
|
handleRemove,
|
||||||
handlePlay,
|
handlePlay,
|
||||||
|
listName,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue