video1.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=0.5">
  6. <title>云看板</title>
  7. <link href="/lib/bootstrap/bootstrap.min.css" rel="stylesheet" />
  8. <link href="/css/dashboard.css" rel="stylesheet" />
  9. <script type="text/javascript" src="/js/service.js"></script>
  10. <script type="text/javascript" src="/js/session.js"></script>
  11. <script type="text/javascript" src="/js/getService.js"></script>
  12. <script type="text/javascript" src="/lib/jquery-3.4.1.js"></script>
  13. <script type="text/javascript" src="/lib/jquery-3.4.1.min.js"></script>
  14. </head>
  15. <body id="container" class="container-fluid">
  16. <style>
  17. body{
  18. overflow-y: hidden;
  19. overflow-x: hidden;
  20. }
  21. </style>
  22. <!-- <div class="row no-padding head-bar" style="height:81px"> -->
  23. <!-- <div class="col-lg-1 col-md-1">
  24. </div>
  25. <div class="col-lg-4 col-md-4 page-title">
  26. 云看板
  27. </div> -->
  28. <!-- <div class="col-lg-3 col-md-3 block-padding">
  29. <button type="button" class="btn btn-warning"
  30. onclick="window.location.replace('/pages/dashboard/warehouse.html');">仓库看板</button>
  31. <button type="button" class="btn btn-warning"
  32. onclick="window.location.replace('/pages/dashboard/produce.html');">制造看板</button>
  33. <button type="button" class="btn btn-warning"
  34. onclick="window.location.replace('/pages/dashboard/line.html');">产线看板</button>
  35. <button type="button" class="btn btn-warning"
  36. onclick="window.location.replace('/pages/dashboard/quality.html');">品质看板</button>
  37. </div> -->
  38. <!-- <div class="col-lg-4 col-md-4">
  39. </div>-->
  40. <!-- </div> -->
  41. <div class="my-container" id="div-main">
  42. <div id="two">
  43. <div style="width: 50%;height: 100%;float:left;margin-left: -25px;margin-right: 5px;" v-for="task in taskList">
  44. <video autoplay="true" loop="true" muted="muted" id="twoVideo2" v-if="task.isVideo" class="videoType" :src="'/upVedio/ABB/'+task.fileName" controls width="100%" height="100%" > </video>
  45. <img v-if="task.isImg" class="imgType" :src="'/upVedio/ABB/'+task.fileName" width="100%" />
  46. <iframe v-if="task.isPdf" class="pdfType" width="100%" border="0" frameborder="0" v-bind:src="'/lib/pdfjs/web/viewer.html?file=/upVedio/ABB/'+task.fileName" style="background-color:#ffffff"></iframe>
  47. </div>
  48. <div style="width: 49%;height: 100%;float:left;">
  49. <video autoplay="true" loop="true" muted="muted" id="twoVideo" class="videoType" :src="'/upVedio/ABB/'+firstFile" controls width="106%" height="100%" > </video>
  50. <img id="twoImg" class="imgType" :src="'/upVedio/ABB/'+firstFile" width="100%" />
  51. <iframe class="pdfType" id="twoPdf" width="100%" border="0" frameborder="0" v-bind:src="'/lib/pdfjs/web/viewer.html?file=/upVedio/ABB/'+firstFile" style="background-color:#ffffff"></iframe>
  52. </div>
  53. </div>
  54. <div class="row" v-for="task in taskList" id="one" style="margin-left: -25px">
  55. <video v-if="task.isVideo" autoplay="true" loop="true" muted="muted" id="oneVideo" class="videoType" :src="'/upVedio/AAA/'+task.fileName" controls width="100%" height="100%" > </video>
  56. <img v-if="task.isImg" class="imgType" :src="'/upVedio/AAA/'+task.fileName" width="101%" />
  57. <iframe v-if="task.isPdf" class="pdfType" width="100%" border="0" frameborder="0" v-bind:src="'/lib/pdfjs/web/viewer.html?file=/upVedio/AAA/'+task.fileName" style="background-color:#ffffff"></iframe>
  58. </div>
  59. </div>
  60. <!-- jQuery -->
  61. <script src="/lib/jquery.min.js"></script>
  62. <script src="/lib/vue.min.js"></script>
  63. <script src="/lib/echarts/echarts.min.js"></script>
  64. <script src="/lib/echarts/theme/macarons.js"></script>
  65. <script src="/js/service/produce-task.js"></script>
  66. <script type="text/javascript">
  67. // setTimeout(ServiceProduceTask.getVedioFileList(),500)
  68. // $(".videoType").height($(window).height()-85);
  69. // $(".imgType").height($(window).height()-85);
  70. $(".videoType").height($(window).height());
  71. $(".imgType").height($(window).height());
  72. $(".pdfType").height($(window).height());
  73. var vm = new Vue({
  74. el: '#div-main',
  75. data: {
  76. listInit: ServiceProduceTask.getVedioFileList(),
  77. taskList: [],
  78. timer: '',
  79. pageSize: 1,
  80. pageIndex: 0,
  81. timer: '',
  82. upVideo:'',
  83. firstFile:''
  84. },
  85. methods: {
  86. get() {
  87. this.upVideo = this.listInit[0].upVideo;
  88. this.firstFile = this.listInit[0].fileName;
  89. if(this.listInit[0].isImg){
  90. $("#twoVideo").hide();
  91. $("#twoPdf").hide();
  92. }else if(this.listInit[0].isVideo){
  93. $("#twoImg").hide();
  94. $("#twoPdf").hide();
  95. }else{
  96. $("#twoVideo").hide();
  97. $("#twoImg").hide();
  98. }
  99. if(this.upVideo == 'AAA'){
  100. $("#two").hide();
  101. }else{
  102. $("#one").hide();
  103. // this.listInit.splice(0, 1);
  104. }
  105. },
  106. get2(){
  107. this.listInit=ServiceProduceTask.getVedioFileList();
  108. if(this.upVideo != 'AAA'){
  109. this.listInit.splice(0, 1);
  110. }
  111. this.taskList = this.listInit.slice(this.pageIndex,this.pageSize);
  112. if(this.pageSize >= this.listInit.length){
  113. this.pageIndex = 0;
  114. this.pageSize = 1;
  115. }else{
  116. this.pageIndex = this.pageIndex + 1;
  117. this.pageSize = this.pageSize + 1;
  118. }
  119. // this.getVideo();
  120. },
  121. getVideo(){
  122. var _video1 = $('#twoVideo')[0];
  123. var _video2 = $('#twoVideo2')[0];
  124. var _video3 = $('#oneVideo')[0];
  125. if($('#twoVideo').is(':hidden') && _video1.paused){
  126. }else{
  127. _video1.play();
  128. }
  129. if($('#twoVideo2').is(':hidden') && _video2.paused){
  130. }else{
  131. _video1.play();
  132. }
  133. if($('#oneVideo').is(':hidden') && _video3.paused){
  134. }else{
  135. _video1.play();
  136. }
  137. }
  138. },
  139. mounted() {
  140. this.get();
  141. this.get2();
  142. this.timer = setInterval(this.get2, 10000);
  143. },
  144. beforeDestroy() {
  145. clearInterval(this.timer);
  146. }
  147. })
  148. // function getVideo(){
  149. // var _video1 = $('#twoVideo')[0];
  150. // var _video2 = $('#twoVideo2')[0];
  151. // var _video3 = $('#oneVideo')[0];
  152. // if($('#twoVideo').is(':hidden') && _video1.paused){
  153. // }else{
  154. // _video1.play();
  155. // }
  156. // if($('#twoVideo2').is(':hidden') && _video2.paused){
  157. // }else{
  158. // _video1.play();
  159. // }
  160. // if($('#oneVideo').is(':hidden') && _video3.paused){
  161. // }else{
  162. // _video1.play();
  163. // }
  164. // if(_video3.paused){
  165. // _video3.play();
  166. // //_video.pause();//暂停
  167. // }
  168. // }
  169. </script>
  170. </body>
  171. </html>