This commit is contained in:
XiuYun CHEN 2025-05-30 17:23:47 +08:00
parent db44d85747
commit a83890881e
2 changed files with 7 additions and 2 deletions

View File

@ -26,4 +26,6 @@ export { ItemCompPast } from './src/main/ets/components/ItemCompPastk'
export { MeetingItemModel,MeetingModel,MeetingModels,ItemModel } from './src/main/ets/model/ItemModel'
export { VideoSelected } from './src/main/ets/pages/VideoSelected'
export { VideoSelected } from './src/main/ets/pages/VideoSelected'
export { videoTools } from './src/main/ets/polyv/VideoUtil'

View File

@ -5,7 +5,7 @@ import { VideoList,DataModel,MeetingItemModel,ItemModel,MeetingModels } from 'ho
import HashMap from '@ohos.util.HashMap';
import { BusinessError } from '@kit.BasicServicesKit';
import inputMethod from '@ohos.inputMethod';
import { ItemCompPast } from 'home'
import { ItemCompPast,videoTools } from 'home'
@Entry
@Component
@ -198,6 +198,9 @@ struct VideoSearchPage {
ListItem() {
VideoSearchComp({ model: item })
}
.onClick(()=>{
videoTools.getVideoDetail(item.uuid)
})
})
}
}