Videoplayback.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="shipin">
  3. <!-- <div id="video-container" class="myplayer" ref="myPlayer"></div> -->
  4. <web-view :src="url"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. // import EZUIKit from "../../../../static/ezuikit.js";
  9. // var player = null;
  10. export default {
  11. data() {
  12. return {
  13. urls:'',
  14. width:'',
  15. }
  16. },
  17. onLoad(options) {
  18. this.urls = options.companyOrgId;
  19. // this.accessToken();
  20. // this.width = uni.getSystemInfoSync().screenWidth;
  21. // console.log('111111111111111111', uni.getSystemInfoSync().screenWidth)
  22. },
  23. onShow() {
  24. this.selectVideoValue();
  25. },
  26. methods: {
  27. selectVideoValue(){
  28. var postdata ={
  29. 'appKey': 'bf1fe258e25b4556af2889b53cf2d835',
  30. 'appSecret': 'f814b3ce1653f7f909b6ccc358563fb3'
  31. };
  32. uni.request({
  33. url:'https://open.ys7.com/api/lapp/token/get',
  34. method: "POST",
  35. data: postdata,
  36. header: {
  37. 'content-type': 'application/x-www-form-urlencoded',
  38. },
  39. success: (res) => {
  40. // console.log('111111111111111111',res.data.data.accessToken)
  41. // let that = this;
  42. this.url = "../../../../static/sp.html?url="+ this.urls+"&accessToken="+res.data.data.accessToken;
  43. }
  44. });
  45. },
  46. accessToken(){
  47. var postdata ={
  48. 'appKey': 'bf1fe258e25b4556af2889b53cf2d835',
  49. 'appSecret': 'f814b3ce1653f7f909b6ccc358563fb3'
  50. };
  51. console.log('111111111111111111',postdata)
  52. uni.request({
  53. url:'https://open.ys7.com/api/lapp/token/get',
  54. method: "POST",
  55. data: postdata,
  56. header: {
  57. 'content-type': 'application/x-www-form-urlencoded',
  58. },
  59. success: (res) => {
  60. console.log('111111111111111111',res.data.data.accessToken)
  61. player = new EZUIKit.EZUIKitPlayer({
  62. id: 'video-container', // 视频容器ID
  63. accessToken: res.data.data.accessToken,
  64. url:this.urls,
  65. template: 'simple',
  66. plugin: ['talk'], // 加载插件,talk-对讲
  67. width:this.width,
  68. height: 250,
  69. autoplay: true,
  70. // decoderPath: EZUIKit,
  71. });
  72. window.player = player;
  73. }
  74. });
  75. }
  76. },
  77. //监听页面卸载
  78. onUnload(){
  79. },
  80. }
  81. </script>
  82. <style>
  83. .shipin{
  84. width: 750rpx;
  85. height: 100%;
  86. }
  87. #video-container{
  88. width: 750rpx;
  89. height: 600rpx;
  90. }
  91. </style>