pull/2369/head
QiuLiang-99 2025-05-03 17:08:52 +08:00
parent 19de946df1
commit 5ba914c162
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export default ({ selectedList, props, removeAllSelect, emit }: {
}) => { }) => {
let clickTime = 0 let clickTime = 0
let clickIndex = -1 let clickIndex = -1
// todo 待接管
const handlePlayMusic = async(index: number, single: boolean) => { const handlePlayMusic = async(index: number, single: boolean) => {
let targetSong = props.list[index] let targetSong = props.list[index]
const defaultListMusics = await getListMusics(defaultList.id) const defaultListMusics = await getListMusics(defaultList.id)

View File

@ -4,6 +4,7 @@ import { LIST_IDS } from '@common/constants'
export default ({ selectedList, list, listAll, removeAllSelect }) => { export default ({ selectedList, list, listAll, removeAllSelect }) => {
const handlePlayMusic = (index) => { const handlePlayMusic = (index) => {
// todo 待接管
playList(LIST_IDS.DOWNLOAD, listAll.value.indexOf(list.value[index])) playList(LIST_IDS.DOWNLOAD, listAll.value.indexOf(list.value[index]))
} }