This commit is contained in:
yanran200730
2022-05-30 11:22:39 +08:00
parent 35461d3c9e
commit cc8baeb474

View File

@@ -342,7 +342,12 @@
}
})
this.albumName = this.albumList.filter(v => v.value === this.albumId)[0].label
this.albumName = this.albumList.filter((v, index) => {
if (v.value === this.albumId) {
this.albumIndex = index
}
return v.value === this.albumId
})[0].label
}
})
},