settingConfig.js 522 B

12345678910111213141516171819202122232425
  1. import { commonConfig } from '../../js/config'
  2. export const settingConfig = {
  3. // 设置面板属性的显隐
  4. displayOption: {
  5. dataAllocation: {
  6. // 是否存在数据配置
  7. enable: false
  8. }
  9. }
  10. }
  11. const customConfig = {
  12. type: 'video',
  13. root: {
  14. version: '2023071001'
  15. },
  16. customize: {
  17. videoType: 'application/x-mpegURL',
  18. videoUrl: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8',
  19. posterUrl: ''
  20. }
  21. }
  22. export const dataConfig = {
  23. ...commonConfig(customConfig)
  24. }