|
@@ -48,12 +48,13 @@ export default defineComponent({
|
|
|
if (!this.subjectId) {
|
|
|
return ''
|
|
|
}
|
|
|
- const columns = this.columns
|
|
|
+ const columns = this.columns as any
|
|
|
const list = columns.find((c: any) => c.value === this.subjectId)
|
|
|
return list ? list.text : ''
|
|
|
},
|
|
|
selectSubjectList() {
|
|
|
- const musicList = this.activeInfo.activityMusicVoList || []
|
|
|
+ const activeInfo = this.activeInfo as any
|
|
|
+ const musicList = activeInfo.activityMusicVoList || []
|
|
|
const tmpList = musicList.filter(
|
|
|
(music: any) => music.subjectId === this.subjectId
|
|
|
)
|